Search found 4 matches
- Mon Apr 14, 2008 2:42 pm
- Forum: Cyberduck
- Topic: "...a file which does not exist" / But it does!
- Replies: 1
- Views: 2716
Re: "...a file which does not exist" / But it does!
Hi there, I'm seeing a similar error. Every version of Cyberduck since 2.7.3 has had this issue. Maybe this is related to the inability to delete a remote file (I've written about this in another thread), which results in "Cyberduck got an error: Can't get file "filename" of Browser 1...
- Mon Apr 14, 2008 10:42 am
- Forum: Cyberduck
- Topic: Change Remote File Permissions Using Applescript?
- Replies: 0
- Views: 1419
Change Remote File Permissions Using Applescript?
Hi All,
I'm not sure if this can be done using Cyberduck, but I'm trying to figure out how to use Applescript to change a remote file's permissions after it has been uploaded to the server.
I can upload files using Applescript without any issues.
Thanks in advance for your help!
I'm not sure if this can be done using Cyberduck, but I'm trying to figure out how to use Applescript to change a remote file's permissions after it has been uploaded to the server.
I can upload files using Applescript without any issues.
Thanks in advance for your help!
- Mon Apr 14, 2008 10:39 am
- Forum: Cyberduck
- Topic: Can't Delete Remote File Using Applescript
- Replies: 0
- Views: 1348
Can't Delete Remote File Using Applescript
Hi All, This last worked in version 2.7.3 of Cyberduck. In newer versions, Applescript returns the error: "Cyberduck got an error: Can't get file "filename" of Browser 1." (where filename is the actual name of the file to be deleted). The code I'm using is: if exists file filenam...
- Mon Apr 14, 2008 10:26 am
- Forum: Cyberduck
- Topic: Give Applescript a file list?
- Replies: 2
- Views: 1756
Re: Give Applescript a file list?
Hi there,
I think you're looking for something like:
set theFiles to (browse folder (get working folder))
repeat with theFile in theFiles
*do stuff like download theFile here*
end repeat
Hope this helps!
I think you're looking for something like:
set theFiles to (browse folder (get working folder))
repeat with theFile in theFiles
*do stuff like download theFile here*
end repeat
Hope this helps!