我的應用需要將文件寫入(並將其移動)到非管理員用戶的文件夾,並且該用戶沒有權限使用該文件夾。在非管理員Mac上更改RealBASIC權限
我試着改變文件夾的權限,但它似乎沒有效果。
是否有內置限制允許我這樣做?
我要做的就是寫文檔,然後嘗試移動到文件夾最後,它失敗...
感謝您的答案!
下面是代碼:
Dim t as TextOutputStream
Dim tempfile as FolderItem = SpecialFolder.Documents.Child(filePath.Name)
t = tempfile.CreateTextFile
t.Write fileData
t.close
Dim p as New Permissions(0)
p.OthersExecute = True
p.OthersWrite = True
p.OthersRead = True
filePath.Parent.Permissions = p
tempfile.MoveFileTo filePath.Parent
OK,這就是我所想的。客戶正在竊聽我好幾個月,我需要知道。 – 2010-11-01 23:22:46