通过脚本,我能选择右侧孤立的空文件夹吗?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kuiwu_cn
    Journeyman
    • Apr 2018
    • 12

    通过脚本,我能选择右侧孤立的空文件夹吗?

    通过脚本,我能选择右侧孤立的空文件夹吗?

    select right.orphan empty.folders

    这条脚本命令,好像是错误的。
  • kuiwu_cn
    Journeyman
    • Apr 2018
    • 12

    #2
    select right.orphan.empty.folders

    这样写好像也是错误的。

    Comment

    • Aaron
      Team Scooter
      • Oct 2007
      • 16002

      #3
      Hello,

      select empty.folders is a specific command that does not allow left or right.

      For this workflow, you probably need to preprocess the single folder with
      load "c:\folder1"
      expand all
      select empty.folders
      delete left
      load "c:\other folder" "c:\folder1"
      continue script

      Warning: Please test with test folders/files first. Cannot UNDO delete!

      translate.google.com
      你好,

      选择empty.folders是一个不允许左侧或右侧的特定命令。

      对于此工作流程,您可能需要使用预处理单个文件夹
      load "c:\folder1"
      expand all
      select empty.folders
      delete left
      load "c:\other folder" "c:\folder1"
      继续脚本

      警告:请先用测试文件夹/文件进行测试。 无法删除UNDO!
      Aaron P Scooter Software

      Comment

      • kuiwu_cn
        Journeyman
        • Apr 2018
        • 12

        #4
        Thank you very much.

        Comment

        Working...