當前位置:首頁 » 操作系統 » unlinklinux

unlinklinux

發布時間: 2024-11-08 02:31:30

1. linux shell中,unlink和rm命令有什麼區別

strace 跑 rm 與 unlink,結果有不同地方.

1. strace rm 1.txt 片段

access("1.txt", W_OK) = 0

unlinkat(AT_FDCWD, "1.txt", 0) = 0

復制代碼

2. strace unlink 2.txt 片段

unlink("2.txt") = 0

復制代碼

我想可以再看看 unlink 與 unlinkat 的 manpage 說明應該有答案 ?

The unlinkat() system call operates in exactly the same way as either unlink(2) or rmdir(2) (depending on

whether or not flags includes the AT_REMOVEDIR flag) except for the differences described in this manual

page.

AT_REMOVEDIR

By default, unlinkat() performs the equivalent of unlink(2) on pathname. If the AT_REMOVEDIR flag

is specified, then performs the equivalent of rmdir(2) on pathname.

復制代碼

測試用 strace rm -r testdir 方式刪除一個目錄與其下的檔案目錄,結果為:

access("testdir", W_OK) = 0

unlinkat(AT_FDCWD, "testdir", AT_REMOVEDIR) = 0

復制代碼

所以結論一般命令用 rm 或是 unlink 都可以刪除檔案,因為都是一樣的意思。系統面呼叫來說刪除檔案一般還是使用 unlink() 呼叫,只是有另外提供 unlinkat 提供相同機制,但是可以刪除檔案或是空目錄。

熱點內容
我的世界國際版第三方啟動器怎麼進伺服器 發布:2024-11-22 15:08:22 瀏覽:959
加倉計演算法 發布:2024-11-22 15:08:21 瀏覽:61
python抓圖 發布:2024-11-22 15:06:50 瀏覽:578
oppo手機便簽怎麼加密 發布:2024-11-22 14:59:21 瀏覽:903
linuxclass 發布:2024-11-22 14:59:16 瀏覽:911
安卓平板怎麼畫矢量圖 發布:2024-11-22 14:59:07 瀏覽:609
安卓微信網路設置在哪裡打開 發布:2024-11-22 14:49:40 瀏覽:966
pb復制文件夾 發布:2024-11-22 14:49:37 瀏覽:665
隱藏伺服器的ip埠 發布:2024-11-22 14:36:55 瀏覽:907
java序列化存儲 發布:2024-11-22 14:33:41 瀏覽:557