มันจะสร้างไฟล์ temp .<FILE_NAME>.<RANDOM_STRING>
โดยค่าเริ่มต้นในไดเรกทอรีเป้าหมายและการตั้งชื่อ ดังนั้นหากคุณกำลังคัดลอกfoo.txt
มันจะสร้างไฟล์ tmp ที่เรียกว่า.foo.txt.GV4H3
( GV4H3
เป็นสตริงสุ่มที่จะแตกต่างกันทุกครั้งที่คุณเรียกใช้) คุณสามารถควบคุมพฤติกรรมนี้ได้โดยใช้rsync
ตัวเลือกเหล่านี้:
--partial
By default, rsync will delete any partially transferred
file if the transfer is interrupted. In some circum‐
stances it is more desirable to keep partially trans‐
ferred files. Using the --partial option tells rsync to
keep the partial file which should make a subsequent
transfer of the rest of the file much faster.
--partial-dir=DIR
A better way to keep partial files than the --partial
option is to specify a DIR that will be used to hold
the partial data (instead of writing it out to the des‐
tination file). On the next transfer, rsync will use a
file found in this dir as data to speed up the resump‐
tion of the transfer and then delete it after it has
served its purpose.
โปรดอ่านส่วนที่เกี่ยวข้องของrsync
หน้าคน (ต่อไปนี้เป็นเพียงส่วนเล็ก ๆ ของส่วนขนาดใหญ่เกี่ยวกับวิธีการใช้งาน--partial-dir
)