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

相关文章

Flutter打包APK的几种方式小结

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

MySQL INSERT语句实现当记录不存在时插入的几种方法

《MySQLINSERT语句实现当记录不存在时插入的几种方法》MySQL的INSERT语句是用于向数据库表中插入新记录的关键命令,下面:本文主要介绍MySQLINSERT语句实现当记录不存在时... 目录使用 INSERT IGNORE使用 ON DUPLICATE KEY UPDATE使用 REPLACE

Python实现Microsoft Office自动化的几种方式及对比详解

《Python实现MicrosoftOffice自动化的几种方式及对比详解》办公自动化是指利用现代化设备和技术,代替办公人员的部分手动或重复性业务活动,优质而高效地处理办公事务,实现对信息的高效利用... 目录一、基于COM接口的自动化(pywin32)二、独立文件操作库1. Word处理(python-d

python中字符串拼接的几种方法及优缺点对比详解

《python中字符串拼接的几种方法及优缺点对比详解》在Python中,字符串拼接是常见的操作,Python提供了多种方法来拼接字符串,每种方法有其优缺点和适用场景,以下是几种常见的字符串拼接方法,需... 目录1. 使用 + 运算符示例:优缺点:2. 使用&nbsjsp;join() 方法示例:优缺点:3

Linux修改pip和conda缓存路径的几种方法

《Linux修改pip和conda缓存路径的几种方法》在Python生态中,pip和conda是两种常见的软件包管理工具,它们在安装、更新和卸载软件包时都会使用缓存来提高效率,适当地修改它们的缓存路径... 目录一、pip 和 conda 的缓存机制1. pip 的缓存机制默认缓存路径2. conda 的缓

Spring 中使用反射创建 Bean 实例的几种方式

《Spring中使用反射创建Bean实例的几种方式》文章介绍了在Spring框架中如何使用反射来创建Bean实例,包括使用Class.newInstance()、Constructor.newI... 目录1. 使用 Class.newInstance() (仅限无参构造函数):2. 使用 Construc

SpringBoot项目启动错误:找不到或无法加载主类的几种解决方法

《SpringBoot项目启动错误:找不到或无法加载主类的几种解决方法》本文主要介绍了SpringBoot项目启动错误:找不到或无法加载主类的几种解决方法,具有一定的参考价值,感兴趣的可以了解一下... 目录方法1:更改IDE配置方法2:在Eclipse中清理项目方法3:使用Maven命令行在开发Sprin

Python依赖库的几种离线安装方法总结

《Python依赖库的几种离线安装方法总结》:本文主要介绍如何在Python中使用pip工具进行依赖库的安装和管理,包括如何导出和导入依赖包列表、如何下载和安装单个或多个库包及其依赖,以及如何指定... 目录前言一、如何copy一个python环境二、如何下载一个包及其依赖并安装三、如何导出requirem

C++初始化数组的几种常见方法(简单易懂)

《C++初始化数组的几种常见方法(简单易懂)》本文介绍了C++中数组的初始化方法,包括一维数组和二维数组的初始化,以及用new动态初始化数组,在C++11及以上版本中,还提供了使用std::array... 目录1、初始化一维数组1.1、使用列表初始化(推荐方式)1.2、初始化部分列表1.3、使用std::

JS 实现复制到剪贴板的几种方式小结

《JS实现复制到剪贴板的几种方式小结》本文主要介绍了JS实现复制到剪贴板的几种方式小结,包括ClipboardAPI和document.execCommand这两种方法,具有一定的参考价值,感兴趣的... 目录一、Clipboard API相关属性方法二、document.execCommand优点:缺点: