atwiki-logo
  • 新規作成
    • 新規ページ作成
    • 新規ページ作成(その他)
      • このページをコピーして新規ページ作成
      • このウィキ内の別ページをコピーして新規ページ作成
      • このページの子ページを作成
    • 新規ウィキ作成
  • 編集
    • ページ編集
    • ページ編集(簡易版)
    • ページ名変更
    • メニュー非表示でページ編集
    • ページの閲覧/編集権限変更
    • ページの編集モード変更
    • このページにファイルをアップロード
    • メニューを編集
    • 右メニューを編集
  • バージョン管理
    • 最新版変更点(差分)
    • 編集履歴(バックアップ)
    • アップロードファイル履歴
    • このページの操作履歴
    • このウィキのページ操作履歴
  • ページ一覧
    • ページ一覧
    • このウィキのタグ一覧
    • このウィキのタグ(更新順)
    • このページの全コメント一覧
    • このウィキの全コメント一覧
    • おまかせページ移動
  • RSS
    • このウィキの更新情報RSS
    • このウィキ新着ページRSS
  • ヘルプ
    • ご利用ガイド
    • Wiki初心者向けガイド(基本操作)
    • このウィキの管理者に連絡
    • 運営会社に連絡(不具合、障害など)
ページ検索 メニュー
mydefrag_jp @ ウィキ
  • 広告なしオファー
  • ウィキ募集バナー
  • 目安箱バナー
  • 操作ガイド
  • 新規作成
  • 編集する
  • 全ページ一覧
  • 登録/ログイン
広告非表示(β版)
ページ一覧
mydefrag_jp @ ウィキ
  • 広告なしオファー
  • ウィキ募集バナー
  • 目安箱バナー
  • 操作ガイド
  • 新規作成
  • 編集する
  • 全ページ一覧
  • 登録/ログイン
ページ一覧
mydefrag_jp @ ウィキ
広告非表示 広告非表示(β)版 ページ検索 ページ検索 メニュー メニュー
  • 新規作成
  • 編集する
  • 登録/ログイン
  • 管理メニュー
管理メニュー
  • 新規作成
    • 新規ページ作成
    • 新規ページ作成(その他)
      • このページをコピーして新規ページ作成
      • このウィキ内の別ページをコピーして新規ページ作成
      • このページの子ページを作成
    • 新規ウィキ作成
  • 編集
    • ページ編集
    • ページ編集(簡易版)
    • ページ名変更
    • メニュー非表示でページ編集
    • ページの閲覧/編集権限変更
    • ページの編集モード変更
    • このページにファイルをアップロード
    • メニューを編集
    • 右メニューを編集
  • バージョン管理
    • 最新版変更点(差分)
    • 編集履歴(バックアップ)
    • アップロードファイル履歴
    • このページの操作履歴
    • このウィキのページ操作履歴
  • ページ一覧
    • このウィキの全ページ一覧
    • このウィキのタグ一覧
    • このウィキのタグ一覧(更新順)
    • このページの全コメント一覧
    • このウィキの全コメント一覧
    • おまかせページ移動
  • RSS
    • このwikiの更新情報RSS
    • このwikiの新着ページRSS
  • ヘルプ
    • ご利用ガイド
    • Wiki初心者向けガイド(基本操作)
    • このウィキの管理者に連絡
    • 運営会社に連絡する(不具合、障害など)
  • atwiki
  • mydefrag_jp @ ウィキ
  • FileBoolean
  • FileBoolean_N-Z

mydefrag_jp @ ウィキ

FileBoolean_N-Z

最終更新:2010年12月12日 12:08

mydefrag_jp

- view
だれでも歓迎! 編集
原文: http://www.mydefrag.com/Scripts-FileBoolean.html
更新日: 2010/12/12 (ここで取り扱っている内容の原文をコピーした日付です)

NOT

Logically negate (invert) a file boolean. If the boolean is true then the result is false, and if the boolean is false then the result is true.

Syntax
 not ( FILEBOOLEAN )

Example
 FileSelect
   not ( Name("*.zip") or Name("*.arj") )
 FileActions
   ...
 FileEnd

See also:
  • FileSelect
  • FileBoolean
  • FileActions



NotToBeIndexed

Select all the items that have the "NotToBeIndexed" attribute set (yes) or not set (no). This attribute is used by the Windows content indexing service and indicates that the item is not to be indexed.

Syntax
 NotToBeIndexed(yes)
 NotToBeIndexed(no)

Example
 FileSelect
   # Select all the items that have the "NotToBeIndexed" attribute.
   NotToBeIndexed(yes)
 FileActions
   ....
 FileEnd

See also:
  • FileSelect
  • FileBoolean
  • FileActions


Offline

Select all the items that have the "offline" attribute set (yes) or not set (no). This attribute is used by the Windows Remote Storage service and indicates that the file data is physically moved to offline storage.

Syntax
 Offline(yes)
 Offline(no)

Example
 FileSelect
   # Select all the items that do not have the "Offline" attribute.
   Offline(no)
 FileActions
   ....
 FileEnd

See also:
  • FileSelect
  • FileBoolean
  • FileActions



OR

Logical OR of two file booleans. The result is true if at least 1 of the booleans is true.

Syntax
 FILEBOOLEAN or FILEBOOLEAN
 FILEBOOLEAN | FILEBOOLEAN
 FILEBOOLEAN || FILEBOOLEAN

Example
 FileSelect
   Size(10000000,0) or LastAccess("","1 month ago")
 FileActions
   ...
 FileEnd

See also:
  • FileSelect
  • FileBoolean
  • FileActions


Readonly

Select all the items that are read-only (yes) or not read-only (no).

Syntax
 Readonly(yes)
 Readonly(no)

Example
 FileSelect
   # Select all the items that are read-only.
   Readonly(yes)
 FileActions
   ....
 FileEnd

See also:
  • FileSelect
  • FileBoolean
  • FileActions



SelectNtfsSystemFiles

Select all the NTFS system files. These files are usually not visible, but they exist on all NTFS disks. The function selects all the files that are in the root directory of the volume and have a name that begins with "$" (dollar sign), except for "$RECYCLE.BIN", and all files in the $Extend folder and it's subfolders.

   * This function is intended to be used together with the *  PlaceNtfsSystemFiles fileaction. 

Inode Filename Description
0 $MFT Master File Table - An index of every file.
1 $MFTMirr A backup copy of the first 4 records of the MFT.
2 $LogFile Transactional logging file.
3 $Volume Serial number, creation time, dirty flag.
4 $AttrDef Attribute definitions.
6 $Bitmap Contains volume's cluster map (in-use vs. free).
7 $Boot Boot record of the volume.
8 $BadClus Lists bad clusters on the volume.
9 $Quota [Windows NT only] Quota information.
9 $Secure Security descriptors used by the volume.
10 $UpCase Table of uppercase characters used for collating.
11 $Extend A directory for: $ObjId, $Quota, $Reparse, $UsnJrnl.
$Extend\$ObjId 	Unique Ids given to every file.
$Extend\$Quota 	Quota information.
$Extend\$Reparse 	Reparse point information.
$Extend\$UsnJrnl 	USN Journal.
$Extend\$RmMetadata 	Transactional data.

Syntax
 SelectNtfsSystemFiles(yes)
 SelectNtfsSystemFiles(no)

Example
 FileSelect
   # Select all the NTFS system files.
   SelectNtfsSystemFiles(yes)
 FileActions
   # Place the selected files, sorted by their full path.
   PlaceNtfsSystemFiles(Ascending,MftSize * 0.1)
 FileEnd

See also:
  • PlaceNtfsSystemFiles
  • ReclaimNtfsReservedAreas



Size

Select all the items that have a size in bytes between the minimum (first number) and maximum (second number). If the second number is zero then the maximum is infinity.

   * Sparse files can have a larger size than what they are actually using on the disk. 

Syntax
 Size(NUMBER , NUMBER)

Example
 FileSelect
   # Select all files with a size up to 10 gigabyte.
   Size(0,10000000000)
 FileActions
   ....
 FileEnd

See also:
  • FileSelect
  • FileBoolean
  • FileActions

Smallest
Select the smallest items (size in bytes). The argument is the number of items to be selected.

Syntax
Smallest(NUMBER)

Example
 FileSelect
   # Select the 10 smallest files on the disk.
   Smallest(10)
 FileActions
   ....
 FileEnd

See also:
  • Largest
  • FileSelect
  • FileBoolean
  • FileActions



SmallestFragmentSize

Select all the items that have a smallest fragment with a size (in bytes) between the minimum (first number) and the maximum (second number). If the second number is zero then the maximum is infinity.

Syntax
 SmallestFragmentSize(NUMBER , NUMBER)

Example
 FileSelect
   # Select all the items that have a smallest fragment between 100 and 1000 bytes in size.
   SmallestFragmentSize(100,1000)
 FileActions
   ....
 FileEnd

See also:
  • FileSelect
  • FileBoolean
  • FileActions



Sparse

Select all the items that are sparse (yes) or not sparse (no).

Syntax
 Sparse(yes)
 Sparse(no)

Example
 FileSelect
   # Select all the items that are sparse.
   Sparse(yes)
 FileActions
   ....
 FileEnd

See also:
  • FileSelect
  • FileBoolean
  • FileActions


System

Select all the items that have the "system" attribute set (yes) or not set (no). This attribute is used by Windows to indicate items that are part of Windows, or that are used exclusively by Windows. This definition includes files such as the pagefile, "desktop.ini" files, just about everything in the Windows folder (including infrequently used stuff), temporary files, files in the recycle bin, and lot's of other stuff.

Syntax
 System(yes)
 System(no)

Example
 FileSelect
   # Select all the items that have the "System" attribute.
   System(yes)
 FileActions
   ....
 FileEnd

Tip: You can get a list of all the system files on the C: disk with the following Windows commandline:
dir /A:S /S c:

See also:
  • FileSelect
  • FileBoolean
  • FileActions


Temporary

Select all the items that have the "temporary" attribute set (yes) or not set (no). This attribute is used by Windows to indicate temporary items. The file system will attempt to keep all of the data in memory for quick access, rather than flushing it back to mass storage.

Syntax
 Temporary(yes)
 Temporary(no)

Example
 FileSelect
   # Select all the items that have the "Temporary" attribute.
   Temporary(yes)
 FileActions
   ....
 FileEnd

See also:
  • FileSelect
  • FileBoolean
  • FileActions

Unmovable
Select all the items that MyDefrag could not move. MyDefrag initially assumes that all items on disk are movable. Only after the Windows defragmentation API has refused to move an item will an item be "unmovable".

Syntax
 Unmovable(yes)
 Unmovable(no)

Example
 FileSelect
   # Select all the items that have the "Unmovable" attribute.
   Unmovable(yes)
 FileActions
   ....
 FileEnd

See also:
  • FileSelect
  • FileBoolean
  • FileActions





Virtual

Select all the items that have the "virtual" attribute set (yes) or not set (no).

Syntax
 Virtual(yes)
 Virtual(no)

Example
 FileSelect
   # Select all the items that have the "Virtual" attribute.
   Virtual(yes)
 FileActions
   ....
 FileEnd

See also:
  • FileSelect
  • FileBoolean
  • FileActions

タグ:

+ タグ編集
  • タグ:
タグの更新に失敗しました
エラーが発生しました。ページを更新してください。
ページを更新
「FileBoolean_N-Z」をウィキ内検索
LINE
シェア
Tweet
mydefrag_jp @ ウィキ
記事メニュー
このWikiはMyDefragのマニュアルの翻訳サイトです。


Scripts

  • VolumeSelect
    • (VolumeBooleans)
  • VolumeAction
    • (VolumeActions)
    • FileSelect
      • (FileBooleans)
    • FileAction
      • (FileActions)
    • FileEnd
  • VolumeEnd


Link

  • MyDefrag 公式ページ
  • 公式Scriptマニュアル


更新履歴

取得中です。

ここを編集
記事メニュー2
最近更新されたページ
  • 5441日前

    SimpleMyDefragScriptMaker
  • 5443日前

    FileBoolean/FileBoolean_F-L
  • 5443日前

    FileBoolean/FileBoolean_A-E
  • 5449日前

    FileAction
  • 5449日前

    VolumeAction
  • 5449日前

    トップページ
  • 5449日前

    FileBoolean/FileBoolean_N-Z
  • 5449日前

    メニュー
  • 5449日前

    FileBoolean
  • 5451日前

    VolumeBoolean
もっと見る
最近更新されたページ
  • 5441日前

    SimpleMyDefragScriptMaker
  • 5443日前

    FileBoolean/FileBoolean_F-L
  • 5443日前

    FileBoolean/FileBoolean_A-E
  • 5449日前

    FileAction
  • 5449日前

    VolumeAction
  • 5449日前

    トップページ
  • 5449日前

    FileBoolean/FileBoolean_N-Z
  • 5449日前

    メニュー
  • 5449日前

    FileBoolean
  • 5451日前

    VolumeBoolean
もっと見る
ウィキ募集バナー
急上昇Wikiランキング

急上昇中のWikiランキングです。今注目を集めている話題をチェックしてみよう!

  1. 遊戯王DSNTナイトメアトラバドール攻略Wiki@わかな
  2. デジタルモンスター まとめ@ ウィキ
  3. Last Z: Survival Shooter @ ウィキ
  4. GUNDAM WAR Wiki
  5. ホワイトハッカー研究所
  6. オバマス検証@wiki
  7. アニヲタWiki(仮)
  8. とある魔術の禁書目録 Index
  9. MADTOWNGTAまとめwiki
  10. beatmania IIDX SP攻略 @ wiki
もっと見る
人気Wikiランキング

atwikiでよく見られているWikiのランキングです。新しい情報を発見してみよう!

  1. アニヲタWiki(仮)
  2. ゲームカタログ@Wiki ~名作からクソゲーまで~
  3. MADTOWNGTAまとめwiki
  4. 初音ミク Wiki
  5. ストグラ まとめ @ウィキ
  6. 機動戦士ガンダム EXTREME VS.2 INFINITEBOOST wiki
  7. Grand Theft Auto V(グランドセフトオート5)GTA5 & GTAオンライン 情報・攻略wiki
  8. 検索してはいけない言葉 @ ウィキ
  9. 機動戦士ガンダム バトルオペレーション2攻略Wiki 3rd Season
  10. 英傑大戦wiki
もっと見る
新規Wikiランキング

最近作成されたWikiのアクセスランキングです。見るだけでなく加筆してみよう!

  1. MADTOWNGTAまとめwiki
  2. フォートナイト攻略Wiki
  3. MadTown GTA (Beta) まとめウィキ
  4. 首都圏駅メロwiki
  5. Last Z: Survival Shooter @ ウィキ
  6. まどドラ攻略wiki
  7. 駅のスピーカーwiki
  8. 魔法少女ノ魔女裁判 攻略・考察Wiki
  9. 漢字でGO 問題集 @wiki
  10. ちいぽけ攻略
もっと見る
全体ページランキング

最近アクセスの多かったページランキングです。話題のページを見に行こう!

  1. 【移転】Miss AV 見れない Missav.wsが見れない?!MissAV新URLはどこ?閉鎖・終了してない?missav.ai元気玉って何? - ホワイトハッカー研究所
  2. ブラック・マジシャン・ガール - 遊戯王DSNTナイトメアトラバドール攻略Wiki@わかな
  3. 真崎杏子 - 遊戯王DSNTナイトメアトラバドール攻略Wiki@わかな
  4. 魔獣トゲイラ - バトルロイヤルR+α ファンフィクション(二次創作など)総合wiki
  5. ブラック・マジシャン・ガール - アニヲタWiki(仮)
  6. ゴジュウユニコーン/一河角乃 - アニヲタWiki(仮)
  7. 参加者一覧 - ストグラ まとめ @ウィキ
  8. 参加者一覧 - MADTOWNGTAまとめwiki
  9. Pokémon LEGENDS Z-A - アニヲタWiki(仮)
  10. 辻 伸弘(NTTデータ先端技術株式会社) - IT人材像 @ ウィキ
もっと見る

  • このWikiのTOPへ
  • 全ページ一覧
  • アットウィキTOP
  • 利用規約
  • プライバシーポリシー

2019 AtWiki, Inc.