X是不是比8p轻,整体玻璃钢机身 轻木机翼比8p小

1、模拟器沙盒目录
文件都在个人用户名文件夹下的一个隐藏文件夹里,中文叫资源库,他的目录其实是Library。
因为应用是在沙箱(sandbox)中的,在文件读写权限上受到限制,只能在几个目录下读写文件:
Documents:应用中用户数据可以放在这里,iTunes备份和恢复的时候会包括此目录
tmp:存放临时文件,iTunes不会备份和恢复此目录,此目录下文件可能会在应用退出后删除
Library/Caches:存放缓存文件,iTunes不会备份此目录,此目录下文件不会在应用退出删除
iTunes在与iPhone同步时,备份所有的Documents和Library文件。
iPhone在重启时,会丢弃所有的tmp文件。
查看方法:
方法1、可以设置显示隐藏文件,然后在Finder下直接打开。设置查看隐藏文件的方法如下:打开终端,输入命名
(1)显示Mac隐藏文件的命令:defaults write com.apple.finder AppleShowAllFiles -bool true
(2)隐藏Mac隐藏文件的命令:defaults write com.apple.finder AppleShowAllFiles -bool false
(3)输完单击Enter键,退出终端,重新启动Finder就可以了 重启Finder:鼠标单击窗口左上角的苹果标志--&强制退出--&Finder--&
现在能看到资源库文件夹了。&
打开资源库后找到/Application Support/iPhone Simulator/文件夹。这里面就是模拟器的各个程序的沙盒目录了。
方法2、这种方法更方便,在Finder上点-&前往-&前往文件夹,输入/Users/username/Library/Application Support/iPhone Simulator/& 前往。
username这里写用户名。&
代码查看目录:
NSString *path = NSHomeDirectory();//主目录
NSLog(@"NSHomeDirectory:%@",path);
NSString *userName = NSUserName();//与上面相同
NSString *rootPath = NSHomeDirectoryForUser(userName);
NSLog(@"NSHomeDirectoryForUser:%@",rootPath);
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory=[paths objectAtIndex:0];//Documents目录
NSLog(@"NSDocumentDirectory:%@",documentsDirectory);
结果如下:
2013-09-03 20:31:27.210 ios那啥[8383:c07] NSHomeDirectory:/Users/wmm/Library/Application Support/iPhone Simulator/6.1/Applications/D803DBD2-9CB2-4D18-9152-6E9398EFF5DB2013-09-03 20:31:27.210 ios那啥[8383:c07] NSHomeDirectoryForUser:/Users/wmm/Library/Application Support/iPhone Simulator/6.1/Applications/D803DBD2-9CB2-4D18-9152-6E9398EFF5DB2013-09-03 20:31:27.211 ios那啥[8383:c07] NSDocumentDirectory:/Users/wmm/Library/Application Support/iPhone Simulator/6.1/Applications/D803DBD2-9CB2-4D18-9152-6E9398EFF5DB/Documents&&自定义类返回各目录路径:
#import &Foundation/Foundation.h&
@interface ICSandboxHelper : NSObject
+ (NSString *)homeP
// 程序主目录,可见子目录(3个):Documents、Library、tmp
+ (NSString *)appP
// 程序目录,不能存任何东西
+ (NSString *)docP
// 文档目录,需要ITUNES同步备份的数据存这里,可存放用户数据
+ (NSString *)libPrefP
// 配置目录,配置文件存这里
+ (NSString *)libCacheP
// 缓存目录,系统永远不会删除这里的文件,ITUNES会删除
+ (NSString *)tmpP
// 临时缓存目录,APP退出后,系统可能会删除这里的内容
+ (BOOL)hasLive:(NSString *) //判断目录是否存在,不存在则创建
#import "ICSandboxHelper.h"
@implementation ICSandboxHelper
+ (NSString *)homePath{
return NSHomeDirectory();
+ (NSString *)appPath
NSArray * paths = NSSearchPathForDirectoriesInDomains(NSApplicationDirectory, NSUserDomainMask, YES);
return [paths objectAtIndex:0];
+ (NSString *)docPath
NSArray * paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
return [paths objectAtIndex:0];
+ (NSString *)libPrefPath
NSArray * paths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES);
return [[paths objectAtIndex:0] stringByAppendingFormat:@"/Preference"];
+ (NSString *)libCachePath
NSArray * paths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES);
return [[paths objectAtIndex:0] stringByAppendingFormat:@"/Caches"];
+ (NSString *)tmpPath
{return [NSHomeDirectory() stringByAppendingFormat:@"/tmp"];
+ (BOOL)hasLive:(NSString *)path
if ( NO == [[NSFileManager defaultManager] fileExistsAtPath:path] )
return [[NSFileManager defaultManager] createDirectoryAtPath:path
withIntermediateDirectories:YES
attributes:nil
error:NULL];
return NO;
阅读(...) 评论()3694人阅读
花了2天时间研究iPhone中锁屏图片和墙纸到底存放在哪个文件夹,最终终于找到是这2个文件:
Library/SpringBoard/LockBackground.cpbitmap
Library/SpringBoard/HomeBackground.cpbitmap
然后需要通过这个网站转成JPG或PNG。
在此列出一些系统文件夹中的文件及用途:
Accessibility settings - Settings & General & Accessibility
Library/Preferences/com.apple.Accessibility.plist
Airplane Mode, WiFi, and Bluetooth - Also memorized WiFi networks
Library/Preferences/com.apple.preferences.network
Library/Preferences/com.apple.network.eapclient.tls.TrustExceptions.plist
SystemConfiguration/com.apple.network.identification.plist
SystemConfiguration/com.apple.wifi.plist
SystemConfiguration/preferences.plist
Library/Calendar/* &-The asterisk (*) means all files inside that folder
Library/Preferences/com.apple.mobilecal*
Call History
Library/CallHistory/*
Clock - Includes the current timezone, and World cities, timers, alarms, stopwatches
Library/Preferences/com.apple.mobiletimer.plist
.apple.preferences.datetime.plist
Library/AddressBook/*
Device name
SystemConfiguration/com.apple.mobilegestalt
Library/Preferences/com.apple.conference*
Keyboard Shortcuts - Settings & General & Keyboard & Shortcuts
Library/Keyboard/*
Language/Keyboard languages
Library/Preferences/.GlobalPreferences.plist
Library/Preferences/com.apple.Preferences.plist
Library/Preferences/com.apple.purplebuddy.plist
Location Services - Settings & Location Services
Library/locationd/*
Library/Preferences/com.apple.locationd.plist
Library/Maps/*
Library/Preferences/com.apple.Maps.plist
Music settings
Library/Preferences/com.apple.mobileipod.plist
Library/Notes/*
Library/Preferences/com.apple.mobilenotes.plist
Notification Center/Push Notification settings - Settings & Notifications
Library/BullitenBoard/*
Library/SpringBoard/PushStore/*
Library/SpringBoard/applicationstate.plist
Library/Preferences/com.apple.springboard.plist
Camera Roll - When replacing, you should delete all files in the respected folders first
Media/DCIM/*
Media/PhotoData/*
Library/Preferences/com.apple.mobileslideshow.plist
Homescreen icon layout - Note that this will be a different file if using a tweak like InfiniFolders
Library/SpringBoard/IconState.plist
Restrictions settings - Settings & General & Restrictions. NOTE: This declares what is allowed by restrictions. If you are trying to bypass restrictions that have been set on you, just turn certain things to
Library/ConfigurationProfiles/PublicInfo/EffectiveUserSettings.plist
Library/ConfigurationProfiles/UserSettings.plist
Library/Preferences/com.apple.springboard.plist
Safari - Cookies, history, bookmarks, settings
Library/Cookies/Cookies.binarycookies
Library/Safari/*
Library/Preferences/com.apple.WebFoundation.plist
Safari homescreen bookmarks
Library/WebClips/*
Library/Preferences/com.apple.assistant*
SMS, MMS, iMessages, and iMessage/FaceTime settings
Library/Preferences/com.apple.imservice*
Library/Preferences/com.apple.madrid.plist
Library/Preferences/com.apple.MobileSMS.plist
Library/SMS/*
Sounds - Settings & Sounds
Library/Preferences/com.apple.preferences.sounds.plist
Library/Preferences/com.apple.springboard.plist
Library/Preferences/com.apple.stocks.plist
Voice Memos
Media/Recordings/*
Library/Voicemail/*
Wallpaper - The HomeBackground files only exist if different from the LockBackground. CPBitmaps can be converted to PNG or JPEG with this handy website:
Library/SpringBoard/LockBackground.cpbitmap
Library/SpringBoard/LockBackgroundThumbnail.jpg
Library/SpringBoard/HomeBackground.cpbitmap
Library/SpringBoard/HomeBackgroundThumbnail.jpg
Weather - Celcius/Fahrenheit, current city
Library/Preferences/com.apple.weather.plist
Here is some slightly more detailed information on each file for those that are interested.
keychain-backup.plist - Probably a backup of data stored in keychains-2.db, which stores various passwords such as WiFi, Passcode Lock, etc. (encrypted)
Library/AddressBook/AddressBook.sqlitedb - Contacts. These are the contacts which are in the &On my i[Pad/Phone/Pod touch]& group and are synced with iCloud, and are independent from contacts synced from mail accounts
Library/AddressBook/AddressBookImages.sqlitedb - Contact images
Library/Accounts/Accounts3.sqlite - Account info for the Calendars, Contacts,
, and iTunes apps
Library/BullitenBoard/ClearedSections.plist - Logs the sections in Notification Center that have been recently &Clear&ed
Library/BullitenBoard/SectionInfo.plist - Notification settings for individual apps (Settings app & Notifications & [app name])
Library/BullitenBoard/SectionOrder.plist - The order of the items in Notification Center (Settings & Notifications)
Library/Caches/com.apple.WebAppCache/ApplicationCache.db - Related to data cached by websites
Library/Caches/locationd/clients.plist - Location settings for apps and System Services (Settings & Location Services)
Library/Caches/locationd/GyroCal.db - Gyroscope calibration
Library/Calendar/Calendar.sqlitedb - Calendar in its entirety
Library/Calendar/Extras.db - Extras for calendar
Library/CallHistory/call_history.db - Call history, including Phone and FaceTime
Library/ConfigurationProfiles/PublicInfo/EffectiveUserSettings.plist - Restrictions settings, such as which abilities are enabled (if restrictions are on)
Library/ConfigurationProfiles/UserSettings.plist - Appears to mirror EffectiveUserSettings.plist
Library/Cookies/com.apple.dataaccessd.[random string associated with an email account].binarycookies - Binary cookies for a specific email account
Library/Cookies/com.apple.itunesstored.2.sqlitedb - iTunes/ cookies
Library/Cookies/Cookies.binarycookies - Safari's binary cookies
Library/DataAccess/AccountInformation.plist - Email data sync info
Library/DataAccess/ASFolders-[random string associated with an email account] - Plist containing folder info for a specific email account
Library/DataAccess/iCloud-[iCloud email account name]/.mboxCache.plist - iCloud email info
Library/DataAccess/iCloud-[iCloud email account name]/.OfflineCache/[number] - iCloud emails cached for offline
Library/itunesstored/itunesstored2.sqlitedb - iTunes/ payment and download info
Library/itunesstored/itunesstored_private.sqlitedb - iTunes/ info
Library/Keyboard/dynamic-text.dat - Appears to be a keylog, and then an alphabetical list of full words.
Library/Keyboard/UserDictionary.sqlite - User-managed autocorrections (Settings & General & Keyboard & Shortcuts)
Library/Keyboard/UserDictionaryWordKeyPairs.plist - Mirrors UserDictionary.sqlite in a different format and as a plist
Library/Mail/AutoFetchEnabled - Plist containing one true/false value of whether Fetch is enabled for Mail
Library/Maps/Bookmarks.plist - Maps bookmarks
Library/Maps/History.plist - Maps history
Library/Notes/notes.idx - Notes
Library/Notes/notes.sqlite - Notes
Library/Preferences/.GlobalPreferences.plist - International settings
Library/Preferences/AppBackup/ - Created by AppBackup (a Cydia app for backing upp app data) if you use it, and contains app data backed up by it
Library/Preferences/com.[name of company].[name of service].plist - Settings for that service. These range from preferences in the Settings app to Cydia apps.
Library/Safari/Bookmarks.db - Safari bookmarks
Library/Safari/History.plist - Safari history
Library/Safari/SuspendState.plist - Suspended state of Safari, its multitasking is handled differently from most apps
Library/SMS/Attachments/[random string associated with an MMS]/[MMS file name].[extension] - An MMS file
Library/SMS/Attachments/[random string associated with an MMS]/[MMS file name]-preview-left.jpg - A preview/thumbnail of an MMS file
Library/SMS/sms.db - Messages, be they iMessages or texts
Library/SpringBoard/applicationstate.plist - App settings
Library/SpringBoard/DesiredIconState.plist - The
current organization state of the icons on the home screen
Library/SpringBoard/IconState.plist - The last organization state of the home screen since boot, and is affected by DesiredIconState.plist and whatever is contained in /Applications and /var/mobile/Applications
Library/SpringBoard/IconSupportState.plist - Acts as IconState.plist if you have IconSupport installed
Library/SpringBoard/LockBackground.cpbitmap - The lockscreen background, in the form of CPBitmap. Also used for the homescreen background if they are the same.
Library/SpringBoard/LockBackgroundThumbnail.jpg - Thumbnail of the lockscreen background, used in Settings & Wallpaper. Also used for the homescreen background thumbnail if they are the same.
Library/SpringBoard/HomeBackground.cpbitmap - The homescreen background, in the form of CPBitmap. Only exists if it is different from the lockscreen background.
Library/SpringBoard/HomeBackgroundThumbnail.jpg - Thumbnail of the homescreen background, used in Settings & Wallpaper. Only exists if HomeBackground.cpbitmap exists.
Library/SpringBoard/PushStore/com.[name of company].[name of app].pushstore - Plist containing push notification data for that app
Library/Voicemail/voicemail.db - Voicemail data
Library/WebClips/[random string associated with a homescreen bookmark].webclip/icon.png - Icon for a homescreen bookmark
Library/WebClips/[random string associated with a homescreen bookmark].webclip/Info.plist - Properties of a homescreen bookmark
Library/WebClips/[random string associated with a homescreen bookmark].webclip/startup.png - Splashscreen of a homescreen bookmark
Media/DCIM/[number1]APPLE/IMG_[number2].[extension] - Media file in the Camera Roll, be it photo, screenshot, video, or saved from elsewhere. Number1 is the number of the Camera Roll, which depends on how many Camera
Rolls you've had and ranges from 100-999. Number2 is the chronological number of the file in the Camera Roll, which ranges from .
Media/PhotoData/Metadata/DCIM/[number &= 100]APPLE/IMG_[number of video in Camera Roll].JPG - Preview image of a video in the Camera Roll before you press the play button
Media/PhotoData/Metadata/DCIM/[number &= 100]APPLE/IMG_[number of video in Camera Roll].THM - Thumbnail of a video in the Camera Roll
Media/PhotoData/Metadata/PhotoData/Sync/[number &= 100]SYNCD/IMG_[number of video in Camera Roll].JPG - Corresponds to its parallel in Media/PhotoData/Metadata/DCIM/[number &= 100]APPLE/IMG_number of video in Camera
Media/PhotoData/Metadata/PhotoData/Sync/[number &= 100]SYNCD/IMG_[number of video in Camera Roll].THM - Corresponds to its parallel in Media/PhotoData/Metadata/DCIM/[number &= 100]APPLE/IMG_number of video in Camera
Media/PhotoData/MISC/DCIM_APPLE.plist - States the current Camera Roll number and the number of the last media placed into the Camera Roll
Media/PhotoData/MISC/PreviewWellImage.tiff - Thumbnail of the Camera Roll when in the root of the Photos app
Media/PhotoData/Photos.sqlite - Photo data
Media/PhotoData/Photos.sqlite.aside - Appears to be some sort of backup of Photos.sqlite
Media/Recordings/[date] [time].m4a - Voice Memo, named YYYYMMDD HHMMSS.m4a
Media/Recordings/AssetManifest.plist - Manifest of Voice Memo data
Media/Recordings/Recordings.db - Voice Memo data
Media/Recprdings/SyncedAssets.plist - Sync info of Voice Memos
SystemConfiguration/com.apple.accounts.exists.plist - List of accounts that are enabled/disabled on your device
SystemConfiguration/com.apple.AutoWake.plist - List of times that the device is scheduled to automatically connect to WiFi (persistent Wifi for ya)
SystemConfiguration/com.apple.mobilegestalt - Contains the device name
SystemConfiguration/com.apple.network.identification.plist - Network info, such as memorized SSID's to automatically connect to
com.apple.radios.plist - Airplane Mode toggle
SystemConfiguration/com.apple.wifi.plist - Network info, such as memorized SSID's to automatically connect to
SystemConfiguration/preferences.plist - Network info
&&相关文章推荐
参考知识库
* 以上用户言论只代表其个人观点,不代表CSDN网站的观点或立场
访问:90980次
积分:1537
积分:1537
排名:千里之外
原创:56篇
转载:53篇
评论:18条
(6)(3)(5)(1)(1)(1)(1)(1)(3)(3)(2)(5)(2)(4)(2)(2)(2)(1)(5)(4)(9)(4)(10)(1)(2)(1)(3)(6)(8)(2)(5)(1)(4)(1)iphone4怎么找到文件目录?
iphone4怎么找到文件目录?手机和电脑已经连在了一起,就是那个ITOOLS在哪里?
已有1个回答
[见习专家]
专家星级&:&0.5星
问答堂专家综合评分
问题评分&:&0星
采纳、点赞&:&0星
二次回复率&:&5星
内容为广告/垃圾,我要举报!
特聘专家具有协助内容审核的特权
举报后内容将不能在前台展示
错乱举报会导致该权利被剥夺
选择举报原因×
iphone文件目录?itools里面,软件管理,,每个软件后面都有一个文件夹的图标,点开就行了,
留下你的评论
这些铃声自己收藏整理的,还有据说是英国下载量第一的铃声哦。自己转化成m4r格式,只要同步到手机里就可以用咯。个人比较喜欢欧美韩风的,因为听不懂所以就比较不...
该内容由系统自动生成
参考价:¥2100.00
主屏尺寸3.5英寸
电池容量1420mAh
主屏分辨率960x640像素
电池类型不可拆卸式电池
后置摄像头500万像素
CPU频率1.0GHz
前置摄像头30万像素
CPU类型苹果 A4
名网友点评分数
微信公众账号ZOL问答堂
关注微信,随时随地解答您的疑惑
ZOL问答堂官方微博@ZOL问答堂
关注成功!该问题被回答后,将给您发送站内短信。
您也可以通过关注问答堂微信,及时获得您关注问题的回答。
微信关注问题方法“”IOS9.1的系统
请问怎么打开游戏文件目录【iphone6s吧】_百度贴吧
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&签到排名:今日本吧第个签到,本吧因你更精彩,明天继续来努力!
本吧签到人数:0成为超级会员,使用一键签到本月漏签0次!成为超级会员,赠送8张补签卡连续签到:天&&累计签到:天超级会员单次开通12个月以上,赠送连续签到卡3张
关注:800,677贴子:
IOS9.1的系统
请问怎么打开游戏文件目录收藏
自从8.3以后
苹果就开始发飙
不支持没有共享的文件打开目录
除非你越狱,可怜我们尔等想改游戏存档的人
不知道如何下手 有人懂的吗
醉鹅加盟,靠谱好生意,加盟整店输出,助您创业无忧!醉鹅。
求人告诉啊
必须越狱 否则不可能打开
老毕买的6s啊?
其实这样子更安全的 不越狱的确是打不开
哈哈恍恍惚惚好吧
呼吁红红火火vghh
水分活度仪等.自主研发OEM产品
她和他恋爱三年,他没有给过她任何承诺……回家的列车上,她有15站,他有31站……她上车说:“到了叫我。”然后倒头就睡。不知过了多久,她被他叫醒了,却过了她下车的站。他说:“跟我回家吧。”她忍不住扑哧一笑,眼泪跟着掉了下来,害羞的点了点头。她跟着他又坐了一天汽车,走了几十里山路,来到了生他养他的那个小山村……………到家后,他把她直接卖给了隔壁的老王!拿着钱第一时间去苹果官网预定了最新款iphone 6S plus!
怎么搞、、itunes和itools
不越狱,我是没办法了
9.1能越狱了?
这是未来的十八级大神在帮你顶贴,所以禁止对我发这些没礼貌的表情了,尤其是
楼主,求我啊,教我
楼主怎么搞
教我一下,你发的那个贴吧链接看不了
登录百度帐号推荐应用
为兴趣而生,贴吧更懂你。或搜索 新闻 资讯 游戏
您现在的位置:&&>>&&>>&&>>&&>>&正文
iPhone游戏安装目录在哪&最简单的查找方法
编辑:wangqing && 来源:网络 && 发布时间: 13:35:51
  【巴士数码】一些新手用户弄不清楚iPhone游戏安装目录在哪,或者打算修改某个游戏的数据包,却在上百个安装目录中迷路了,下面就和大家分享一个很简单的查找iPhone游戏安装路径的方法,不知道怎么弄的用户可以来参考一下哦。
  iPhone游戏安装目录在哪?
  程序安装目录在var/mobile/Containers/Bundle/Applocation
  程序文档目录在var/mobile/Containers/Data/Applocation
  注意,有时候这些文件都是隐藏状态的,你需要打开显示隐藏项目才能看到。
  接下来,和大家分享一个很实用的、也很简单的查找iPhone游戏安装路径的方法,具体如下:
  先打开iPhone folders\iPhone\var\mobile\Applications,可以看到好多文件夹,点击查看-选择文件夹显示类型-缩略图。
  如此一来,让这些文件夹以缩略图显示,所有的文件夹都变成了和iPhone里软件游戏一样的图标,这样要找的目录就一目了然。
  不知道iPhone游戏安装目录在哪,以上就是小编和大家分享的一个简单、实用的查找iPhone游戏安装路径的方法,大家可以参考一下。
  iPhone游戏存档修改方法教程
  我们这里以iTools为例,分享一个方法,可以不用越狱也能修改iPhone/iPad游戏存档。
  1、在电脑上下载安装iTools软件。
  2、先在iOS设备上玩一会你要修改的游戏,然后后台关闭。刚刚安装的游戏里面,是没有数据的,所以我们要先玩一下。
  3、打开itools,找到你的iOS设备,并点击应用程序。
  4、找到想要修改的游戏,然后点文档管理,就是那一排的文件夹(最后一个按钮)。
  5、接下里就会出现游戏的文件夹。
  6、下载你需要的存档包,然后解压缩,把Documents这个存档全部替换。
  7、最后提示的时候,我们选择是就可以了。
扫描左侧二维码,可以订阅iPhone中文网官方微信。每天除了推送最新的苹果产品资讯,我们还将不定期举行有奖活动,广大网友可以积极参与,幸运随时会降临!当然,你也可微信搜索“iPhone中文网”或“apple4cn”,关注iPhone中文网官方微信,第一时间获取更多苹果资讯。
iOS越狱破解
苹果产品信息查询
热门新闻排行
皖公网安备05 皖网文许字[3号
TGBUS Corporation, All Rights Reserved

我要回帖

更多关于 整体轻墙面图 的文章

 

随机推荐