Python Paramiko SFTP get file along with file timestamp/stat
up vote
1
down vote
favorite
# create SSHClient instance
ssh = paramiko.SSHClient()
list =
# AutoAddPolicy automatically adding the hostname and new host key
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.load_system_host_keys()
ssh.connect(hostname, port, username, password)
stdin, stdout, stderr = ssh.exec_command("cd *path*; ls")
for i in stdout:
list.append(i)
sftp = ssh.open_sftp()
for i in list:
tempremote = ("*path*" + i).replace('n', '')
templocal = ("*path*" + i).replace('n', '')
try:
#Get the file from the remote server to local directory
sftp.get(tempremote, templocal)
except Exception as e:
print(e)
Remote Server File Date Modified Stat : 6/10/2018 10:00:17
Local File Date Modified Stat : Current datetime
But I found that the date modified changed after done copy the file.
Is there anyway to copy remote file along with the file stat to the local file too ?
python sftp paramiko getfiles
add a comment |
up vote
1
down vote
favorite
# create SSHClient instance
ssh = paramiko.SSHClient()
list =
# AutoAddPolicy automatically adding the hostname and new host key
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.load_system_host_keys()
ssh.connect(hostname, port, username, password)
stdin, stdout, stderr = ssh.exec_command("cd *path*; ls")
for i in stdout:
list.append(i)
sftp = ssh.open_sftp()
for i in list:
tempremote = ("*path*" + i).replace('n', '')
templocal = ("*path*" + i).replace('n', '')
try:
#Get the file from the remote server to local directory
sftp.get(tempremote, templocal)
except Exception as e:
print(e)
Remote Server File Date Modified Stat : 6/10/2018 10:00:17
Local File Date Modified Stat : Current datetime
But I found that the date modified changed after done copy the file.
Is there anyway to copy remote file along with the file stat to the local file too ?
python sftp paramiko getfiles
1
Why are you using shellls
command to retrieve file a list? Use SFTP:SFTPClient.listdir
.
– Martin Prikryl
Nov 8 at 7:49
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
# create SSHClient instance
ssh = paramiko.SSHClient()
list =
# AutoAddPolicy automatically adding the hostname and new host key
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.load_system_host_keys()
ssh.connect(hostname, port, username, password)
stdin, stdout, stderr = ssh.exec_command("cd *path*; ls")
for i in stdout:
list.append(i)
sftp = ssh.open_sftp()
for i in list:
tempremote = ("*path*" + i).replace('n', '')
templocal = ("*path*" + i).replace('n', '')
try:
#Get the file from the remote server to local directory
sftp.get(tempremote, templocal)
except Exception as e:
print(e)
Remote Server File Date Modified Stat : 6/10/2018 10:00:17
Local File Date Modified Stat : Current datetime
But I found that the date modified changed after done copy the file.
Is there anyway to copy remote file along with the file stat to the local file too ?
python sftp paramiko getfiles
# create SSHClient instance
ssh = paramiko.SSHClient()
list =
# AutoAddPolicy automatically adding the hostname and new host key
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.load_system_host_keys()
ssh.connect(hostname, port, username, password)
stdin, stdout, stderr = ssh.exec_command("cd *path*; ls")
for i in stdout:
list.append(i)
sftp = ssh.open_sftp()
for i in list:
tempremote = ("*path*" + i).replace('n', '')
templocal = ("*path*" + i).replace('n', '')
try:
#Get the file from the remote server to local directory
sftp.get(tempremote, templocal)
except Exception as e:
print(e)
Remote Server File Date Modified Stat : 6/10/2018 10:00:17
Local File Date Modified Stat : Current datetime
But I found that the date modified changed after done copy the file.
Is there anyway to copy remote file along with the file stat to the local file too ?
python sftp paramiko getfiles
python sftp paramiko getfiles
edited Nov 8 at 7:42
Martin Prikryl
83.3k22154342
83.3k22154342
asked Nov 8 at 2:42
Jack Lim
478
478
1
Why are you using shellls
command to retrieve file a list? Use SFTP:SFTPClient.listdir
.
– Martin Prikryl
Nov 8 at 7:49
add a comment |
1
Why are you using shellls
command to retrieve file a list? Use SFTP:SFTPClient.listdir
.
– Martin Prikryl
Nov 8 at 7:49
1
1
Why are you using shell
ls
command to retrieve file a list? Use SFTP: SFTPClient.listdir
.– Martin Prikryl
Nov 8 at 7:49
Why are you using shell
ls
command to retrieve file a list? Use SFTP: SFTPClient.listdir
.– Martin Prikryl
Nov 8 at 7:49
add a comment |
2 Answers
2
active
oldest
votes
up vote
2
down vote
accepted
Paramiko indeed won't preserve timestamp when transferring files.
You have to explicitly call the os.utime
after the download.
Note that pysftp (that internally uses Paramiko) supports preserving the timestamp with its pysftp.Connection.get()
method.
You can reuse their implementation (code simplified by me):
sftpattrs = sftp.stat(tempremote)
os.utime(templocal, (sftpattrs.st_atime, sftpattrs.st_mtime))
Similarly for uploads.
1
Thanks this is what I need in my function. Because I need the date modified to process my files.
– Jack Lim
Nov 8 at 8:24
add a comment |
up vote
1
down vote
There doesn't seem to be a way to copy with the stats documented in the paramiko SFTP module. It makes sense why though, because copying the stats besides times for a remote file wouldn't necessarily make sense (i.e. the user/group ids would not make sense on your local machine).
You can just copy the file, then get the atime/mtime/ctime using the SFTP client's stat
or lstat
methods and set those on the local file using os.utime
.
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
Paramiko indeed won't preserve timestamp when transferring files.
You have to explicitly call the os.utime
after the download.
Note that pysftp (that internally uses Paramiko) supports preserving the timestamp with its pysftp.Connection.get()
method.
You can reuse their implementation (code simplified by me):
sftpattrs = sftp.stat(tempremote)
os.utime(templocal, (sftpattrs.st_atime, sftpattrs.st_mtime))
Similarly for uploads.
1
Thanks this is what I need in my function. Because I need the date modified to process my files.
– Jack Lim
Nov 8 at 8:24
add a comment |
up vote
2
down vote
accepted
Paramiko indeed won't preserve timestamp when transferring files.
You have to explicitly call the os.utime
after the download.
Note that pysftp (that internally uses Paramiko) supports preserving the timestamp with its pysftp.Connection.get()
method.
You can reuse their implementation (code simplified by me):
sftpattrs = sftp.stat(tempremote)
os.utime(templocal, (sftpattrs.st_atime, sftpattrs.st_mtime))
Similarly for uploads.
1
Thanks this is what I need in my function. Because I need the date modified to process my files.
– Jack Lim
Nov 8 at 8:24
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
Paramiko indeed won't preserve timestamp when transferring files.
You have to explicitly call the os.utime
after the download.
Note that pysftp (that internally uses Paramiko) supports preserving the timestamp with its pysftp.Connection.get()
method.
You can reuse their implementation (code simplified by me):
sftpattrs = sftp.stat(tempremote)
os.utime(templocal, (sftpattrs.st_atime, sftpattrs.st_mtime))
Similarly for uploads.
Paramiko indeed won't preserve timestamp when transferring files.
You have to explicitly call the os.utime
after the download.
Note that pysftp (that internally uses Paramiko) supports preserving the timestamp with its pysftp.Connection.get()
method.
You can reuse their implementation (code simplified by me):
sftpattrs = sftp.stat(tempremote)
os.utime(templocal, (sftpattrs.st_atime, sftpattrs.st_mtime))
Similarly for uploads.
edited Nov 8 at 8:24
answered Nov 8 at 7:40
Martin Prikryl
83.3k22154342
83.3k22154342
1
Thanks this is what I need in my function. Because I need the date modified to process my files.
– Jack Lim
Nov 8 at 8:24
add a comment |
1
Thanks this is what I need in my function. Because I need the date modified to process my files.
– Jack Lim
Nov 8 at 8:24
1
1
Thanks this is what I need in my function. Because I need the date modified to process my files.
– Jack Lim
Nov 8 at 8:24
Thanks this is what I need in my function. Because I need the date modified to process my files.
– Jack Lim
Nov 8 at 8:24
add a comment |
up vote
1
down vote
There doesn't seem to be a way to copy with the stats documented in the paramiko SFTP module. It makes sense why though, because copying the stats besides times for a remote file wouldn't necessarily make sense (i.e. the user/group ids would not make sense on your local machine).
You can just copy the file, then get the atime/mtime/ctime using the SFTP client's stat
or lstat
methods and set those on the local file using os.utime
.
add a comment |
up vote
1
down vote
There doesn't seem to be a way to copy with the stats documented in the paramiko SFTP module. It makes sense why though, because copying the stats besides times for a remote file wouldn't necessarily make sense (i.e. the user/group ids would not make sense on your local machine).
You can just copy the file, then get the atime/mtime/ctime using the SFTP client's stat
or lstat
methods and set those on the local file using os.utime
.
add a comment |
up vote
1
down vote
up vote
1
down vote
There doesn't seem to be a way to copy with the stats documented in the paramiko SFTP module. It makes sense why though, because copying the stats besides times for a remote file wouldn't necessarily make sense (i.e. the user/group ids would not make sense on your local machine).
You can just copy the file, then get the atime/mtime/ctime using the SFTP client's stat
or lstat
methods and set those on the local file using os.utime
.
There doesn't seem to be a way to copy with the stats documented in the paramiko SFTP module. It makes sense why though, because copying the stats besides times for a remote file wouldn't necessarily make sense (i.e. the user/group ids would not make sense on your local machine).
You can just copy the file, then get the atime/mtime/ctime using the SFTP client's stat
or lstat
methods and set those on the local file using os.utime
.
answered Nov 8 at 3:11
jlucier
43338
43338
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53200800%2fpython-paramiko-sftp-get-file-along-with-file-timestamp-stat%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Why are you using shell
ls
command to retrieve file a list? Use SFTP:SFTPClient.listdir
.– Martin Prikryl
Nov 8 at 7:49