AppleScript 读写plist文件

简介: --构建完整路径set filePath to ("" & (path to library folder from user domain) & "Preferences" & ":com.

--构建完整路径

set filePath to ("" & (path to library folder from user domain) & "Preferences" & ":com.eusoft.eudic.plist")

--转为unix路径

set plistPath to POSIX path of filePath

tell application "System Events"

--方法一

(*

tell property list file plistPath

set value of property list item "MAIN_TimesLeft" to "820711"

end tell

*)

--方法二

set plist to property list file plistPath

set value of property list item "MAIN_TimesLeft"of plist to "820711"

end tell

目录
相关文章
|
8月前
|
人工智能 BI
文件的读写
文件的读写。
44 0
文件或目录损坏且无法读取|4-17
文件或目录损坏且无法读取|4-17
|
8月前
|
存储 缓存 安全
Android系统 应用存储路径与权限
Android系统 应用存储路径与权限
428 0
Android系统 应用存储路径与权限
|
8月前
|
存储 C++ iOS开发
C++文件操作(文本文件的读写+二进制文件的读写)
C++文件操作(文本文件的读写+二进制文件的读写)
|
缓存 Windows
文件夹显示文件或目录损坏且没法读取
 用户反馈说Win7打开Local Settings文件夹提示“位置不可用,拒绝访问"怎么办?Local Settings是Windows系统中的一个隐藏文件,一般存放着和上网有关的历史记录和缓存之类的文件,如果打开Local Settings文件时提示"位置不可用,拒绝访问"下面跟随小编脚步一起看看具体解决方法。
650 0
|
存储 数据库
|
C++ 存储 iOS开发