Classic ASP File & Folder Delete
2021.04.25
Classic ASP에서 파일이나 폴더를 삭제하는 문법 ' // 폴더 삭제 Function folderDelete(path) DIM FSO SET FSO = CreateObject("Scripting.FileSystemObject") IF (FSO.FolderExists(path)) THEN FSO.DeleteFolder(path) SET FSO = NOTHING END Function ' // 파일 삭제 Function FileDelete(path, filename) Dim fso, strfile SET fso = Server.CreateObject("scripting.FileSystemObject") strfile = path & filename IF fso.FileExists(strfile) THE..