Hi
this is my python file
access_token='mFSg****************************************'
client = dropbox.client.DropboxClient(access_token)
print 'linked account: ', client.account_info()
print 'SHARE FILES'
file_share=client.share('/Apps/gegham/magnus-opus.txt',short_url=True)
print file_share
when I'm trying to run this , I'm getting the following error
Path '/Apps/gegham/magnus-opus.txt' not found . but in my Apps/gegham/directory file 'magnus-opus.txt' exists.
What is the problem?