home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Perfect Stranger Press Kit
/
Perfect Stranger Press Kit.iso
/
pc
/
resources
/
functions
/
download.exe
/
download.dxr
/
00006_check FilePath.ls
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2007-02-21
|
329 b
|
18 lines
on convertFile aFileName
global gbPC
NewName = EMPTY
if gbPC then
repeat with i = 1 to aFileName.char.count
if aFileName.char[i] = ":" then
x = "\"
else
x = aFileName.char[i]
end if
NewName = NewName & x
end repeat
return NewName
else
return aFileName
end if
end