Mac電腦使用BetterAndBetter軟件自定義的腳本

新建文件

tell application "Finder"
	set selectedItems to selection
	
	if (count of selectedItems) is 1 then
		set selectedItem to item 1 of selectedItems
		
		if class of selectedItem is folder then
			display dialog "請輸入文件名:" default answer ""
			set fileName to text returned of result
			
			if fileName is not "" then
				set folderPath to POSIX path of (selectedItem as text)
				set filePath to folderPath & fileName
				
				try
					do shell script "touch " & quoted form of filePath
					display notification "成功創建文件 " & fileName with title "AppleScript"
				on error errMsg
					display dialog "創建文件失敗:" & errMsg buttons {"OK"} default button 1 with icon stop
				end try
			else
				display dialog "請輸入有效的文件名" buttons {"OK"} default button 1 with icon stop
			end if
		else
			display dialog "請選擇一個文件夾" buttons {"OK"} default button 1 with icon stop
		end if
	else
		display dialog "請選擇一個文件夾" buttons {"OK"} default button 1 with icon stop
	end if
end tell
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章