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

相关文章

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

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

在Java中实现线程之间的数据共享的几种方式总结

《在Java中实现线程之间的数据共享的几种方式总结》在Java中实现线程间数据共享是并发编程的核心需求,但需要谨慎处理同步问题以避免竞态条件,本文通过代码示例给大家介绍了几种主要实现方式及其最佳实践,... 目录1. 共享变量与同步机制2. 轻量级通信机制3. 线程安全容器4. 线程局部变量(ThreadL

Linux系统中查询JDK安装目录的几种常用方法

《Linux系统中查询JDK安装目录的几种常用方法》:本文主要介绍Linux系统中查询JDK安装目录的几种常用方法,方法分别是通过update-alternatives、Java命令、环境变量及目... 目录方法 1:通过update-alternatives查询(推荐)方法 2:检查所有已安装的 JDK方

Python错误AttributeError: 'NoneType' object has no attribute问题的彻底解决方法

《Python错误AttributeError:NoneTypeobjecthasnoattribute问题的彻底解决方法》在Python项目开发和调试过程中,经常会碰到这样一个异常信息... 目录问题背景与概述错误解读:AttributeError: 'NoneType' object has no at

Python实现终端清屏的几种方式详解

《Python实现终端清屏的几种方式详解》在使用Python进行终端交互式编程时,我们经常需要清空当前终端屏幕的内容,本文为大家整理了几种常见的实现方法,有需要的小伙伴可以参考下... 目录方法一:使用 `os` 模块调用系统命令方法二:使用 `subprocess` 模块执行命令方法三:打印多个换行符模拟

python生成随机唯一id的几种实现方法

《python生成随机唯一id的几种实现方法》在Python中生成随机唯一ID有多种方法,根据不同的需求场景可以选择最适合的方案,文中通过示例代码介绍的非常详细,需要的朋友们下面随着小编来一起学习学习... 目录方法 1:使用 UUID 模块(推荐)方法 2:使用 Secrets 模块(安全敏感场景)方法

在Golang中实现定时任务的几种高效方法

《在Golang中实现定时任务的几种高效方法》本文将详细介绍在Golang中实现定时任务的几种高效方法,包括time包中的Ticker和Timer、第三方库cron的使用,以及基于channel和go... 目录背景介绍目的和范围预期读者文档结构概述术语表核心概念与联系故事引入核心概念解释核心概念之间的关系

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