Visual Basic(20)

2008-02-25 1:45 am
how to remove some files with clicking a command button?
更新1:

And how to add something in the top(menu)?

更新2:

And when i remove a file, it said"error code 70(使用許可不是)"how to fix it??

回答 (1)

2008-02-25 7:54 am
✔ 最佳答案
可以用Kill這個函數便可刪除檔案

e.g.
Private Sub Command1_Click()
Kill "C:\Autoexec.BAT" '絕對路徑
Kill App.Path & "\Autoexec.BAT" '當前目錄
End Sub

Err Number 70即是 Permission denied, 即是你沒有刪除該檔案的權限, 可能你不是該檔案的擁有者, 或你不是電腦的Admin.
權限不足, 不代表程式的問題, 而是保安的問題, 故用不能用程式刪除。

----------------
VB範例網
http://www.vbex.net/


收錄日期: 2021-04-20 21:00:48
原文連結 [永久失效]:
https://hk.answers.yahoo.com/question/index?qid=20080224000051KK03268

檢視 Wayback Machine 備份