외부 애플리케이션

외부 애플리케이션

무료파일동기화기 사용자 매뉴얼:
빠른 시작 명령줄 비교 설정 일광 절약 시간 파일 제외 전문 설정 외부 애플리케이션 매크로 성능 실시간 동기화 RTS: 서비스로 실행 일괄 작업 예약 동기화 설정 (S)FTP 설정 팁과 요령 가변 드라이브 문자 버전 관리 볼륨 음영 복사본
외부 애플리케이션

메인 대화 상자의 행 중 하나를 더블클릭하면 기본적으로 FreeFileSync가 운영 체제의 파일 브라우저를 열게 됩니다.
Windows:explorer.exe /select, "%local _ path%" & exit 0
macOS:open -R "%local _ path%"
Linux:xdg-open "$(dirname "%local _ path%")"
이 동작을 사용자 지정하거나 다른 외부 애플리케이션을 FreeFileSync에 통합하려면 메뉴 → 도구 → 옵션 → 컨텍스트 메뉴 사용자 지정 으로 이동하여 명령을 추가하거나 바꿉니다.
모든 항목은 관련 숫자 키 0~9 를 누르거나 마우스 오른쪽 버튼을 클릭한 후 나타나는 컨텍스트 메뉴를 통해 빠르게 액세스할 수 있습니다. 첫 번째 항목 은 항목을 더블 클릭 하여도 실행할 수 있습니다.
정규 **매크로** 외에도 다음과 같은 특수 매크로를 사용할 수 있습니다.
MacroDescription





%item _ path%Full file or folder path
%local _ path%Creates a temporary local copy for files located on SFTP and MTP storage. Otherwise identical to %item _ path% for local files and network shares.
%item _ name%File or folder name
%parent _ path%Parent folder path
  • To refer to the item on the opposite side, append " 2 " to the macro name:
    %item _ path 2 %, %local _ path 2 %, %item _ name 2 %, %parent _ path 2 %.
  • To generate a list including all selected items (separated by space), append " s " to the macro name:
    %item _ path s %, %local _ path s %, %item _ name s %, %parent _ path s %.
Examples
  • Start a file content comparison tool:Windows: WinMerge
    "C: \ Program Files (x86) \ WinMerge \ WinMergeU.exe" "%local _ path%" "%local _ path2%"
    macOS: opendiff (requires Xcode)
    opendiff "%local _ path%" "%local _ path2%"
    Ubuntu: kompare (sudo apt install kompare)
    kompare "%local _ path%" "%local _ path2%"
  • Show file in Windows Explorer:
    explorer.exe /select, "%local _ path%" & exit 0
    Note
    Explorer.exe does not set an exit code, but FreeFileSync will show an error message if it does not find exit code = 0 ("Success"). To mitigate, append ( & ) command exit 0 to set the exit code explicitly.
  • Open command prompt for the selected item:
    start cmd.exe /k cd /D "%parent _ path%"
    Note
    FreeFileSync hides the console window, so start opens a new window. cmd.exe /k runs the following command without immediately exiting the console. cd navigates to the directory, even if it's on a different volume ( /D ).
  • Copy item path to Clipboard (as alternative to CTRL + C)
    echo %item _ path%| clip
  • Write list of selected file paths to a text file:
    echo %item _ path% >> %csidl _ Desktop% \ file _ list.txt
  • Preview files using Quick Look on macOS:
    qlmanage -p "%local _ path%"
  • Pass a list of selected files to a script as command line arguments:
    C: \ my-script.cmd "%local _ path s %"
참고 매크로가 공백 문자가 포함될 수 있는 파일 경로로 해결되는 경우 따옴표로 보호해야 합니다.