local tFile, tSaveDir, tFiles, tFileInfo
set the itemdel to "/"
put urlEncode(last item of pPath) into tFile
delete last item of pPath
put the directory into tSaveDir
set the directory to pPath
put the detailed files into tFiles
set the directory to tSaveDir
get lineoffset(
Simon Lord wrote:
> Is it possible to get the detailed files of a particular file
> only? How?
Nothing built-in, but this FileInfo function might help:
on mouseUp
answer file "Select a file:"
put FileInfo(it)
end mouseUp
function FileInfo pPath
local tFile,
Not as far as I know, Simon. You get the 'detailed files' from the directory
the file you're concerned about is in, and then parse through the lines to
get to the one you want.
Ken Ray
Sons of Thunder Software
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.com/
On 7/31/02 12:00 PM, Simon Lord wrote:
> Is it possible to get the detailed files of a particular file
> only? How?
Not that I know, but you can use the "get detailed directories" and extract
the file information from the list not a clean one.
--
>
Is it possible to get the detailed files of a particular file
only? How?
Sincerely,
Simon
___
metacard mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/metacard
There are a few elements in what is returned by "the detailed
files" that need a little extra work. For instance, does
anyone know how to turn the date, filesize, and modification
date into human readable form?
Sincerely,
Simon
__