Attribute Changer的几种形态

2024-03-20 03:48

本文主要是介绍Attribute Changer的几种形态,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

博文背景

Attribute Changer里面改变属性有好几种选项,找了很久资料终于知道他们的差别。

具体操作

总的来说,这个use saved有点儿类似于格式刷

Launching Attribute Changer
Attribute Changer is implemented as a Windows Explorer Add-on (Shell Extension) and
cannot be run independently.
Right-click on drives, folders and files in Windows Explorer and select one of the following
available context menu entries:
Change Attributes
This is the standard way to run Attribute Changer. If a single file or / and folder is selected,
Attribute Changer will retrieve the current values from the file and folder and display them in
Attribute Changer.
If multiple files or folders are selected, Attribute Changer displays the most commonly used
attributes and the current system date & time. For example, if all files have the Archive
attribute set, then the Archive attribute will be checked in the user interface. If one of the files
has a different Archive attribute, then the Archive attribute will be grayed in the user interface.
Change Attributes / Use Current
At least two objects must be selected in Windows Explorer to be able to use this feature. The
Change Attributes / Use Current menu item takes the attributes, date and time values of the
item you right-clicked on to run Attribute Changer. The selected values are then displayed in
the File and Folder Properties tab.
It’s a simple way to duplicate attributes, date and time between multiple files and folders.
Please note that the item you right-clicked is excluded from the list of objects to process.
Change Attributes / Use Saved
Sometimes, you need to apply the last used set of attributes, date and time again and again.
Attribute Changer saves by default the last used configuration, including attributes, date and
time.
In the Settings tab in Attribute Changer, you can disable the automatic configuration change
and do it manually when needed and create some kind of Preset configuration.
When you run Attribute Changer against multiple selected items and choose Change
Attributes / Use Saved, it ignores the current attributes, date and time and restores the
configuration from the last use.

这篇关于Attribute Changer的几种形态的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/828188

相关文章

python判断文件是否存在常用的几种方式

《python判断文件是否存在常用的几种方式》在Python中我们在读写文件之前,首先要做的事情就是判断文件是否存在,否则很容易发生错误的情况,:本文主要介绍python判断文件是否存在常用的几种... 目录1. 使用 os.path.exists()2. 使用 os.path.isfile()3. 使用

C/C++的OpenCV 进行图像梯度提取的几种实现

《C/C++的OpenCV进行图像梯度提取的几种实现》本文主要介绍了C/C++的OpenCV进行图像梯度提取的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的... 目录预www.chinasem.cn备知识1. 图像加载与预处理2. Sobel 算子计算 X 和 Y

Go语言中使用JWT进行身份验证的几种方式

《Go语言中使用JWT进行身份验证的几种方式》本文主要介绍了Go语言中使用JWT进行身份验证的几种方式,包括dgrijalva/jwt-go、golang-jwt/jwt、lestrrat-go/jw... 目录简介1. github.com/dgrijalva/jwt-go安装:使用示例:解释:2. gi

Python将字符串转换为小写字母的几种常用方法

《Python将字符串转换为小写字母的几种常用方法》:本文主要介绍Python中将字符串大写字母转小写的四种方法:lower()方法简洁高效,手动ASCII转换灵活可控,str.translate... 目录一、使用内置方法 lower()(最简单)二、手动遍历 + ASCII 码转换三、使用 str.tr

防止SpringBoot程序崩溃的几种方式汇总

《防止SpringBoot程序崩溃的几种方式汇总》本文总结了8种防止SpringBoot程序崩溃的方法,包括全局异常处理、try-catch、断路器、资源限制、监控、优雅停机、健康检查和数据库连接池配... 目录1. 全局异常处理2. 使用 try-catch 捕获异常3. 使用断路器4. 设置最大内存和线

Android实现定时任务的几种方式汇总(附源码)

《Android实现定时任务的几种方式汇总(附源码)》在Android应用中,定时任务(ScheduledTask)的需求几乎无处不在:从定时刷新数据、定时备份、定时推送通知,到夜间静默下载、循环执行... 目录一、项目介绍1. 背景与意义二、相关基础知识与系统约束三、方案一:Handler.postDel

JAVA保证HashMap线程安全的几种方式

《JAVA保证HashMap线程安全的几种方式》HashMap是线程不安全的,这意味着如果多个线程并发地访问和修改同一个HashMap实例,可能会导致数据不一致和其他线程安全问题,本文主要介绍了JAV... 目录1. 使用 Collections.synchronizedMap2. 使用 Concurren

C++中初始化二维数组的几种常见方法

《C++中初始化二维数组的几种常见方法》本文详细介绍了在C++中初始化二维数组的不同方式,包括静态初始化、循环、全部为零、部分初始化、std::array和std::vector,以及std::vec... 目录1. 静态初始化2. 使用循环初始化3. 全部初始化为零4. 部分初始化5. 使用 std::a

CSS去除a标签的下划线的几种方法

《CSS去除a标签的下划线的几种方法》本文给大家分享在CSS中,去除a标签(超链接)的下划线的几种方法,本文给大家介绍的非常详细,感兴趣的朋友一起看看吧... 在 css 中,去除a标签(超链接)的下划线主要有以下几种方法:使用text-decoration属性通用选择器设置:使用a标签选择器,将tex

Flutter打包APK的几种方式小结

《Flutter打包APK的几种方式小结》Flutter打包不同于RN,Flutter可以在AndroidStudio里编写Flutter代码并最终打包为APK,本篇主要阐述涉及到的几种打包方式,通... 目录前言1. android原生打包APK方式2. Flutter通过原生工程打包方式3. Futte