mirror of
https://github.com/sbrow/ps.git
synced 2025-12-29 18:47:38 -05:00
11 lines
236 B
JavaScript
11 lines
236 B
JavaScript
var Path = arguments[0];
|
|
alert(Path)
|
|
var saveFile = File(Path + "/test.txt");
|
|
|
|
if(saveFile.exists)
|
|
saveFile.remove();
|
|
|
|
saveFile.encoding = "UTF8";
|
|
saveFile.open("e", "TEXT", "????");
|
|
saveFile.writeln("Testing...");
|
|
saveFile.close(); |