Update file.js

This commit is contained in:
Namhyeon Go 2020-11-25 11:49:08 +09:00
parent e0e2088e40
commit d8297d77a5

View File

@ -189,6 +189,12 @@ var FileObject = function() {
return this.interface.CreateFolder(this.filename); return this.interface.CreateFolder(this.filename);
}; };
this.close = function() {
this.interfaces.fso = null;
this.interfaces.ado = null;
this.interface = null;
};
this.create(); this.create();
}; };