var objFSO;
var wshshell = new ActiveXObject("wscript.shell");
var path = wshshell.ExpandEnvironmentStrings("%AppData%"+"\\test");
// 사용자 어플리케이션 디렉토리의 test 디렉토리
// 환경변수를 이용해 다양하게 경로를 지정한다
// %UserName% : 유저 티렉토리
objFSO = new ActiveXObject("Scripting.FileSystemObject");
// 디렉토리가 존재하면 삭제한다
if ( objFSO.FileExists(path) ) objFSO.DeleteFile(path);
// Delete the directory.
//if ( objFSO.FolderExists(path) ) objFSO.DeleteFolder(path, true);
// var objCreatedFile, objOpenedFile;
// objCreatedFile = objFSO.CreateTextFile("c:\\test.txt", true);
// 파일생성
// var ForReading = 1, ForWriting = 2, ForAppending = 8;
// objOpenedFile = objFSO.OpenTextFile("c:\\test.txt", ForWriting, true);
// 파일오픈
// objCreatedFile.Close();
// objOpenedFile.Close();
// Delete the files.
// objFSO.DeleteFile("c:\\test.txt");
'프로그래밍 > JAVA, JSP' 카테고리의 다른 글
자바스크립트 checkBox 전체선택 (0) | 2013.11.13 |
---|---|
자바스크립트 SelectBox Option 추가 (0) | 2013.11.13 |
자바스크립트 replaceAll (0) | 2013.11.12 |
자바(JAVA) SimpleDateFormat을 이용한 날짜 계산 (0) | 2013.11.12 |
자바(JAVA) 캘린더 클래스를 이용한 날짜 계산 (0) | 2013.11.12 |
댓글