snpuvi schrieb:
Hi,
How can I find the actual, file created/modified time using FTP schema.
When I used FTP schema to find the files's last modified time returns the
same time for closely created files. But When I checked the modified time on
the file properties( Windows XP) showed few seconds differences between the
files.
(works fine with SMB schema)
FileSystemManager fsManager = VFS.getManager();
FileObject ftpFile = fsManager.resolveFile("ftp://User:[EMAIL
PROTECTED]/ftpShare");
FileObject[] file = ftpFile.findFiles(new MyFileSelector("my pattern"));
for (int i=0; i< file.length;i++)
{
System.out.println(" last updated time
"+file[i].getContent().getLastModifiedTime());
}
Have you tried using ftp to connect to your server, doing an "ls" or
"dir" or "modtime" and seeing what timestamp is displayed? That is the
information that VFS has available to it....
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]