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

相关文章

Android平台播放RTSP流的几种方案探究(VLC VS ExoPlayer VS SmartPlayer)

技术背景 好多开发者需要遴选Android平台RTSP直播播放器的时候,不知道如何选的好,本文针对常用的方案,做个大概的说明: 1. 使用VLC for Android VLC Media Player(VLC多媒体播放器),最初命名为VideoLAN客户端,是VideoLAN品牌产品,是VideoLAN计划的多媒体播放器。它支持众多音频与视频解码器及文件格式,并支持DVD影音光盘,VCD影

webm怎么转换成mp4?这几种方法超多人在用!

webm怎么转换成mp4?WebM作为一种新兴的视频编码格式,近年来逐渐进入大众视野,其背后承载着诸多优势,但同时也伴随着不容忽视的局限性,首要挑战在于其兼容性边界,尽管WebM已广泛适应于众多网站与软件平台,但在特定应用环境或老旧设备上,其兼容难题依旧凸显,为用户体验带来不便,再者,WebM格式的非普适性也体现在编辑流程上,由于它并非行业内的通用标准,编辑过程中可能会遭遇格式不兼容的障碍,导致操

JVM内存调优原则及几种JVM内存调优方法

JVM内存调优原则及几种JVM内存调优方法 1、堆大小设置。 2、回收器选择。   1、在对JVM内存调优的时候不能只看操作系统级别Java进程所占用的内存,这个数值不能准确的反应堆内存的真实占用情况,因为GC过后这个值是不会变化的,因此内存调优的时候要更多地使用JDK提供的内存查看工具,比如JConsole和Java VisualVM。   2、对JVM内存的系统级的调优主要的目的是减少

【Python报错已解决】AttributeError: ‘list‘ object has no attribute ‘text‘

🎬 鸽芷咕:个人主页  🔥 个人专栏: 《C++干货基地》《粉丝福利》 ⛺️生活的理想,就是为了理想的生活! 文章目录 前言一、问题描述1.1 报错示例1.2 报错分析1.3 解决思路 二、解决方法2.1 方法一:检查属性名2.2 步骤二:访问列表元素的属性 三、其他解决方法四、总结 前言 在Python编程中,属性错误(At

Java项目中,配置打印 JDBC 日志的几种方法

在 IDEA 项目中,如果你想打印 JDBC 日志,可以通过配置日志框架(如 Logback 或 Log4j)来实现。Spring Boot 使用的默认日志框架是 Logback,你可以通过在 application.yml 文件中配置日志级别来打印 JDBC 日志。 方法 1: 使用 application.yml 配置 JDBC 日志 logging:level:# 显示 SQL 语句co

分布式 事务的几种实现方案

背景 四月初,去面试了本市的一家之前在做办公室无人货架的公司,虽然他们现在在面临着转型,但是对于我这种想从传统企业往互联网行业走的孩子来说,还是比较有吸引力的。 在面试过程中就提到了分布式事务问题。我又一次在没有好好整理的问题上吃了亏,记录一下,还是长记性 !!! 先看面试过程 面试官先是在纸上先画了这样一张图: 让我看这张图按照上面的流程走,有没有什么问题?面试官并没有直接说出来这里面

【ReactJS】React项目构建的几种方式

前言: 构建React项目的几种方式: 构建:create-react-app 快速脚手架构建:generator-react-webpack构建:webpack一步一步构建 1)构建:create-react-app 快速脚手架 FaceBook官方发布了一个无需配置的、用于快速构建开发环境的脚手架工具create-react-app。 creat-react-app优点 无需配置:

[JAVA基础知识汇总-1] 创建线程的几种方式

文章目录 1. 继承Thread类2. 实现Runnable接口3. 实现Callable接口4. 线程池 可以认为有四种方式,也可以认为有一种,因为都跟Runnable接口有关 1. 继承Thread类 代码 public class Thread1ExtendsThread extends Thread {// public Thread1(String n

几种MFC对话框的隐藏方法

修改CXXAPP中的InitInstance函数,将原来的模态对话框改为非模态对话框,及修改 [cpp]  view plain copy INT_PTR nResponse = dlg.DoModal();     为 [cpp]  view plain copy dlg.Create(CModalHideDlg::IDD);

单例的几种实现方式

1、内部类: package sigleton;/*** <p>* Created by sunx on 2019/4/22.* Description: 采用内部类的方式创建一个唯一实例* 原理:类的静态变量被初次访问会触发java虚拟机对该类进行初始化,即该类的静态变量的值会变成其初始值而不是默认值。因此* 静态方法getInstance()被调用的时候jvm会初始化这个方法所访问的静态内