Re: Accessing Files from other users home folder?

2012-01-07 Thread Sam Mizanin
to be much easier. Cheers, Sam From: Nilesh Apte nilesh.apt...@gmail.com To: ftpserver-users@mina.apache.org Sent: Friday, 6 January 2012, 16:55 Subject: Re: Accessing Files from other users home folder? Hi Sam: Following code snippet helped me. I modified it to use

Re: Accessing Files from other users home folder?

2012-01-06 Thread Nilesh Apte
u embed the VFS Ftpserver bridge with ApacheFtp? Cheers, Sam From: Nilesh Aptenilesh.apt...@gmail.com To: ftpserver-users@mina.apache.org Sent: Thursday, 5 January 2012, 11:42 Subject: Re: Accessing Files from other users home folder? Hi David: Thanks

Re: Accessing Files from other users home folder?

2012-01-05 Thread Sam Mizanin
Hey Nilesh, I would like to know how did u embed the VFS Ftpserver bridge with ApacheFtp? Cheers, Sam From: Nilesh Apte nilesh.apt...@gmail.com To: ftpserver-users@mina.apache.org Sent: Thursday, 5 January 2012, 11:42 Subject: Re: Accessing Files from other

Re: Accessing Files from other users home folder?

2012-01-04 Thread Nilesh Apte
Hi David: Thanks for the suggestions. Sorry for not replying earlier but it took me a while to attempt the VFS thing. For now I think VFS FTPServer Bridge will do it for me. It (The bridge) allows you to set root directory for the virtual file system, which can be parent to all users' home

Re: Accessing Files from other users home folder?

2011-12-15 Thread gary . bell
We use symbolic links to link the same file to more than one user. So the file actually sits in /files/common/documents/test.txt and is symbolically linked into /home/userA and /home/userB. For the next version of our code we intend to implement a custom filesystem that will remove the need for

Re: Accessing Files from other users home folder?

2011-12-15 Thread David Latorre
Hello, You can use symbolic links as gary bell suggested. Another option is that you replace our default FileSystem implementation with the one provided by the VFS Utils Project, VFS FTPServer Bridge http://vfs-utils.sourceforge.net/ftpserver/index.html If I'm not wrong, in one of its

Accessing Files from other users home folder?

2011-12-14 Thread Nilesh Apte
Hi: Can a ftp user access a file from other ftp users' home directory (or sub directory)? For example, 1. UserA has his home directory as /home/UserA 2. UserB has his home directory as /home/UserB 3. UserA has a file at following folder location, */home/UserA/documents/test.txt* 4. When