MacOS & .DS_Store

.DS_Store === Desktop Services Store

https://en.wikipedia.org/wiki/.DS_Store

https://zh.wikipedia.org/wiki/.DS_Store

它是一种由苹果公司的Mac OS X操作系统所创造的隐藏文件,目的在于存贮文件夹的自定义属性,例如文件们的图标位置或者是背景色的选择等。

https://superuser.com/questions/47918/how-to-prevent-mac-os-x-creating-ds-store-files-on-non-mac-hfs-volumes

https://superuser.com/questions/757593/what-is-ds-store-file-in-windows

# ???

$  defaults write com.apple.desktopservices DSDontWriteNetworkStores YES

webpack 打包,自动删除 .DS_Store


$ sudo find / -name ".DS_Store" -depth -exec rm {} \;


How MACOs displays hidden files in Finder

  1. Command+Shift+. 可以显示隐藏文件、文件夹,再按一次,恢复隐藏;

  2. finder下使用Command+Shift+G 可以前往任何文件夹,包括隐藏文件夹。

https://zh.m.wikihow.com/显示Mac-OS-X上的隐藏文件和文件夹

Under the Mac OS X operating system, there are many settings for whether the hidden files of the system are displayed, and the simplest is to enter commands in the Mac terminal. The show/hide Mac hidden file command is as follows (note the spaces and case-sensitive ):

Command to display Mac hidden files: Defaults write com. Apple. Finder appleshowallfiles-bool true

Command to hide Mac hidden files: Defaults write com. Apple. Finder appleshowallfiles-bool false

Or

Command to display Mac hidden files: Defaults write com. Apple. Finder appleshowallfiles Yes

Command to hide Mac hidden files: Defaults write com. Apple. Finder appleshowallfiles No

After the input, click Enter to exit the terminal and restart the finder.

Tip: How to restart finder? Click the apple logo in the upper left corner of the window-> forced exit-> Finder-> restart.

How to hide and show your own files?

Hidden FILE command: chflags hidden file path

Remove Hidden commands: chflags nohidden file path


.DS_Store 是Mac OS保存文件夹的自定义属性的隐藏文件,如文件的图标位置或背景色,相当于 Windows 的 desktop.ini.

1: 禁止.DS_store生成, 打开“终端”, 复制黏贴下面的命令,回车执行,重启Mac即可生效;

defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool TRUE

2: 恢复.DS_store生成;

defaults delete com.apple.desktopservices DSDontWriteNetworkStores

https://www.zhihu.com/question/20345704

# 删除所有 .DS_Store 文件

sudo find / -name ".DS_Store" -depth -exec rm {} \;

https://github.com/xgqfrms/webpack-all-in-one/issues/2

MacOS & .DS_Store的更多相关文章

  1. ios 项目的.gitignore

    git作为代码管理工具,.gitignore文件用来忽略哪些哪些文件不用添加到仓库管理https://www.gitignore.io/ 这个网址输入变成语言会帮你生成常用的忽略文件如:IOS项目,输 ...

  2. Web应用程序的敏感信息-隐藏目录和文件

    Web应用程序的敏感信息-隐藏目录和文件 0x1.场景 Web应用程序根文件夹中可能存在大量隐藏信息:源代码版本系统文件夹和文件(.git,.gitignore,.svn),项目配置文件(.npmrc ...

  3. Mac下Git项目使用的.gitignore文件

    https://www.gitignore.io/ 这个网站可以搜索特定项目.系统所需要的.gitignore 我现在主要是在Mac上用Visual Studio Code进行开发,所以直接搜索Mac ...

  4. [macOS] git忽略所有的.DS_Store文件

    最彻底的方法如下: vi ~/.gitignore_global 输入以下内容 # OS generated files # ###################### .DS_Store .DS_ ...

  5. macOS 系统 .DS_Store 文件详解

    .DS_Store 文件 .DS_Store 是 Finder 用来存储这个文件夹的显示属性的:比如文件图标的摆放位置. 显示/隐藏 Mac 隐藏文件 显示:defaults write com.ap ...

  6. cornerstone忽略显示.DS_Store文件

    在MacOS上使用svn工具时,经常发现变化列表里出现一堆的?文件,.DS_Store,对有强迫症的人来说很郁闷.处理起来很简单,就是在svn的配置里忽略这个文件.#ue ~/.subversion/ ...

  7. TODO:macOS编译PHP7.1

    TODO:macOS编译PHP7.1 本文主要介绍在macOS上编译PHP7.1,有兴趣的朋友可以去尝试一下. 1.下载PHP7.1源码,建议到PHP官网下载纯净到源码包php-7.1.0.tar.g ...

  8. TODO:macOS上ThinkPHP5和Semantic-UI集成

    TODO:macOS上ThinkPHP5和Semantic-UI集成 1. 全局安装 (on OSX via homebrew)Composer 是 homebrew-php 项目的一部分 2. 把X ...

  9. CoreCRM 开发实录——Travis-CI 实现 .NET Core 程度在 macOS 上的构建和测试 [无水干货]

    上一篇文章我提到:为了使用"国货",我把 Linux 上的构建和测试委托给了 DaoCloud,而 Travis-CI 不能放着不用啊.还好,这货支持 macOS 系统.所以就把 ...

随机推荐

  1. Python爬虫之requests库介绍(一)

    一:Requests: 让 HTTP 服务人类 虽然Python的标准库中 urllib2 模块已经包含了平常我们使用的大多数功能,但是它的 API 使用起来让人感觉不太好,而 Requests 自称 ...

  2. awk高级进阶

    第1章 awk数组练习题 1.1 文件内容(仅第一行) [root@znix test]# head -1 secure-20161219 access.log ==> secure-20161 ...

  3. tpshop购物网站价格筛选功能的测试用例设计

    测试对象:红框内的“价格筛选功能” 以下是功能需求: 1. 除了空以外,输入框不能输入数字之外的内容. 备注:如果出现数字之外的内容,输入框禁止输入. 2. 输入框不能小于0 备注:如果出现小于0的数 ...

  4. Visual Studio的框选代码区块功能

    要从Visual Studio里复制代码粘贴到其他地方,会因为对齐的问题,造成粘贴的时候,代码左边带有大量的空格. 而VS有一个很好的功能就是框选功能,使用方法是,将光标放置在要框选代码的最左边,然后 ...

  5. 可道云kodexplorer搭建私有云后的配置优化

    一.上传下载速度优化首先明确可道云没有对上传下载做任何限制,速度快慢和网络环境有关.可道云是基于http上传,所以和其他http上传速度基本一致:可以对比其他web系统或网站说附件上传速度.同其他例如 ...

  6. 【python 3.6】类:访问属性及调用方法

    >>> class price(): //定义1个类,用于计算价格 def __init__(self,name,danjia): //初始化方法,定义商品名称和单价 self.na ...

  7. Codeblocks自动代码格式化快捷键(自带)

    代码区域右击 点format use AStyle 估计也就是考试竞赛逼着用这个

  8. shell--read命令

    read命令 -p(提示语句) -n(字符个数) -t(等待时间) -s(不回显) 1.基本读取read命令接收标准输入(键盘)的输入,或其他文件描述符的输入(后面在说).得到输入后,read命令将数 ...

  9. mysql更新表数据时报错 You can't specify target table 'RES_CATALOG_CLASSIFY' for update in FROM clause

    You can't specify target table for update in FROM clause含义:不能在同一表中查询的数据作为同一表的更新数据. 将sql语句 UPDATE RES ...

  10. [2017BUAA软工]结对项目

    软工结对项目 一. Github项目地址 https://github.com/crvz6182/sudoku_partner 二. PSP表格 Psp personal software progr ...