0 votes
by (120 points)

I can send photos to RebexTinySftpServer using a android app called PhotoSync but the user root directory only goes to the data folder. Any way to change it to my pictures folder. Im very stupid on security and feel lucky I got it to send and appear in the data folder, but need a simple sftp server with a windows user interface to send photos remotely to my home desktop. Any help would be appreciated. This looks like it would work if its secure and if I could change the folder to send photos to.

Applies to: Rebex SFTP

1 Answer

0 votes
by (70.2k points)

Yes, it can be done easily. Just edit the RebexTinySftpServer.exe.config file. Set value of the userRootDir key to your pictures folder.

For example, modify line:

<add key="userRootDir" value="data" />

to your pictures folder:

<add key="userRootDir" value="c:\Users\USER_NAME\Pictures" />
...