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());
}       

-- 
View this message in context: 
http://www.nabble.com/-VFS--Files-Last-modified-time-tp18748824p18748824.html
Sent from the Commons - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to