Linux 系統中採用三位十進制數表示權限,如0755, 0644
ABCD
A- 0, 表示十進制
B-用戶
C-組用戶
D-其餘用戶
利用 ls -l能夠查看文件的權限get
--- -> 0 (no excute , no write ,no read)
--x -> 1 excute, (no write, no read)
-w- -> 2 write
-wx -> 3 write, excute
r-- -> 4 read
r-x -> 5 read, excute
rw- -> 6 read, write ,
rwx -> 7 read, write , excute
0755->即用戶具備讀/寫/執行權限,組用戶和其它用戶具備讀寫權限;
0644->即用戶具備讀寫權限,組用戶和其它用戶具備只讀權限;
通常賦予目錄0755權限,文件0644權限。
如:
use Cwd;
$PATH = getcwd;
mkdir($PATH/path, 0755);
# make a new folder in current working diectory.
it