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

相关文章

检查 Nginx 是否启动的几种方法

《检查Nginx是否启动的几种方法》本文主要介绍了检查Nginx是否启动的几种方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学... 目录1. 使用 systemctl 命令(推荐)2. 使用 service 命令3. 检查进程是否存在4

详解C++ 存储二进制数据容器的几种方法

《详解C++存储二进制数据容器的几种方法》本文主要介绍了详解C++存储二进制数据容器,包括std::vector、std::array、std::string、std::bitset和std::ve... 目录1.std::vector<uint8_t>(最常用)特点:适用场景:示例:2.std::arra

SpringBoot返回文件让前端下载的几种方式

《SpringBoot返回文件让前端下载的几种方式》文章介绍了开发中文件下载的两种常见解决方案,并详细描述了通过后端进行下载的原理和步骤,包括一次性读取到内存和分块写入响应输出流两种方法,此外,还提供... 目录01 背景02 一次性读取到内存,通过响应输出流输出到前端02 将文件流通过循环写入到响应输出流

C++打印 vector的几种方法小结

《C++打印vector的几种方法小结》本文介绍了C++中遍历vector的几种方法,包括使用迭代器、auto关键字、typedef、计数器以及C++11引入的范围基础循环,具有一定的参考价值,感兴... 目录1. 使用迭代器2. 使用 auto (C++11) / typedef / type alias

python项目环境切换的几种实现方式

《python项目环境切换的几种实现方式》本文主要介绍了python项目环境切换的几种实现方式,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一... 目录1. 如何在不同python项目中,安装不同的依赖2. 如何切换到不同项目的工作空间3.创建项目

C# WebAPI的几种返回类型方式

《C#WebAPI的几种返回类型方式》本文主要介绍了C#WebAPI的几种返回类型方式,包括直接返回指定类型、返回IActionResult实例和返回ActionResult,文中通过示例代码介绍的... 目录创建 Controller 和 Model 类在 Action 中返回 指定类型在 Action

Redis中删除策略的几种实现方式

《Redis中删除策略的几种实现方式》本文详细介绍了Redis的过期键删除策略和内存淘汰策略,过期键删除策略包括定时删除、惰性删除和定期删除,具有一定的参考价值,感兴趣的可以了解一下... 目录前言一、设计背景:为什么需要删除策略?二、第一类:过期键的 3 种核心删除策略1. 定时删除(Timed Dele

JDK21对虚拟线程的几种用法实践指南

《JDK21对虚拟线程的几种用法实践指南》虚拟线程是Java中的一种轻量级线程,由JVM管理,特别适合于I/O密集型任务,:本文主要介绍JDK21对虚拟线程的几种用法,文中通过代码介绍的非常详细,... 目录一、参考官方文档二、什么是虚拟线程三、几种用法1、Thread.ofVirtual().start(

java中判断json key是否存在的几种方法

《java中判断jsonkey是否存在的几种方法》在使用Java处理JSON数据时,如何判断某一个key是否存在?本文就来介绍三种方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的... 目http://www.chinasem.cn录第一种方法是使用 jsONObject 的 has 方法

Java中InputStream重复使用问题的几种解决方案

《Java中InputStream重复使用问题的几种解决方案》在Java开发中,InputStream是用于读取字节流的类,在许多场景下,我们可能需要重复读取InputStream中的数据,这篇文章主... 目录前言1. 使用mark()和reset()方法(适用于支持标记的流)2. 将流内容缓存到字节数组