12 lines
162 B
PostScript
12 lines
162 B
PostScript
|
@echo off;
|
||
|
@record on;
|
||
|
`dir "$argv[1]"`;
|
||
|
@record off;
|
||
|
|
||
|
string $blah = GetCmdData("name");
|
||
|
|
||
|
if (defined $blah) {
|
||
|
return true;
|
||
|
} else {
|
||
|
return false;
|
||
|
}
|