How to check file transfer completion in unix
NickName:user3195273 Ask DateTime:2015-02-26T19:54:10

How to check file transfer completion in unix

How can I check file transfer completion in unix e.g. 2GB file is getting transferd and before openning it I would like check weather the file is still under process or not.

Copyright Notice:Content Author:「user3195273」,Reproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/28741787/how-to-check-file-transfer-completion-in-unix

Answers
svlasov 2015-02-26T13:21:06

Run sync. That way you can be sure that any write operations are finished.",


More about “How to check file transfer completion in unix” related questions

How to check file transfer completion in unix

How can I check file transfer completion in unix e.g. 2GB file is getting transferd and before openning it I would like check weather the file is still under process or not.

Show Detail

SFTP Transfer completion status

I have a SFTP code to get file from the remote server to my local server using "expect".Below is the snippet from my shell script. /usr/bin/expect<<EOF spawn /usr/bin/sftp -o Port=$PORT $US...

Show Detail

How to transfer a file using sftp in UNIX

I want to transfer a .png file from a directory on my computer to a directory on a remote server. I have to use SFTP to secure the file and transfer mode. And I already have a UNIX script (.ksh) ...

Show Detail

Unix File Transfer to RAM

I am working on Unix server. I need to transfer a file from one unix server's disk space to Other unix server's RAM (in -memory). I could not find exact option to perform the task. I am not allowed...

Show Detail

file transfer from local machine to unix

Is there a way to transfer a file in local machine(Windows os) to a unix sever by using commands from within the unix server(not from the windows command prompt)??

Show Detail

How to transfer an XFB file using command BTOPUT in unix server

We have one .sh file which contains all the configurations. We have something like this, export MARK_REMOTE_NODE= (server name) The requirement is we have to send the same file to two different s...

Show Detail

Progress bar for file transfer from Unix to Java

I know this question sounds repeated but the difference is that i am trying to implement progress bar for Unix-Java file transfer.I am using below code for downloading the file from Unix to my loca...

Show Detail

Unix file naming convention for effective tab completion?

I feel like I often name files in such a way that my computer constantly beeps while I program because the tab completion is ambiguous. Before doing a lot of Unix programming, I tended to name rela...

Show Detail

how to check whether a unix path is valid or not in unix using c#

i am transferring some file to unix using my dot net code.I am asking the user to enter the unix path where he wants to transfer the file. before transferring the file I want to check whether the p...

Show Detail

FTP acknowledge transfer completion

I am transferring files at regular intervals to remote system via FTP using a Java client. The files are huge in size(>10MB). A third-party application processes these files in remote path. Now the

Show Detail