mac shell建立檔案 資料夾新增內容

2021-10-13 06:58:16 字數 645 閱讀 2153

#!/bin/sh

# 獲取檔案所在位置

fileptth="$( cd "$( dirname "$0" )" && pwd )"

echo "當前檔案位置 $fileptth"

firename="檔名"

allname="$/$"

echo "完整路徑 $allname"

inputtext="這裡還要寫入檔案的內容";

if [ -f "$allname" ]

then

echo "存在"

else

echo "不存在"

# 建立目錄在當前的位置

# mkdir $

# 建立檔案在當前的位置

# touch $

touch $

fiif [ -f "$allname" ]

then

# 覆蓋內容

# echo "$inputtext" > "$allname"

# 新增內容

echo "$inputtext" >> "$allname"

echo "******************************==" >> "$allname"

fi

建立資料夾

當某資料夾不存在時,建立資料夾 import os path dir file if not os.path.exists path dir os.makedirs path dir 同時建立資料夾有兩種函式,os.mkdir和os.makedirs,兩者的區別在於前者是一級一級建立檔案目錄,後者可...

C 建立資料夾,刪除資料夾,建立檔案,刪除檔案

protected void button1 click object sender,eventargs e 判斷檔案的存在 else string name getfiles.filename 獲取已上傳檔案的名字 string size getfiles.postedfile.contentle...

linux c建立資料夾,並在資料夾中建立檔案

建立資料夾,在在檔案裡面建立檔案 乙個例項 include include include include int main char pathname 100 pathname 0 f pathname 1 l pathname 2 o pathname 3 w pathname 4 pathna...