logging_xml » Revisions »
Differences
This shows you the differences between the selected revisions of the page.
2021-11-23 | 2021-12-03 | ||
grammar (martin) | 5.20 Bug 597 Bytes transferred are recorded in XML log and available in .NET assembly API (martin) | ||
Line 95: | Line 95: | ||
<code xml> | <code xml> | ||
- | <group name="put -preservetime d:\*.txt" start="2012-01-04T14:25:10.204Z"> | + | <group name="put -preservetime d:\*.txt" start="2021-12-03T14:25:10.204Z"> |
<upload> | <upload> | ||
<filename value="d:\readme.txt" /> | <filename value="d:\readme.txt" /> | ||
<destination value="/home/user/readme.txt" /> | <destination value="/home/user/readme.txt" /> | ||
+ | <size value="15345" /> | ||
<result success="true" /> | <result success="true" /> | ||
</upload> | </upload> | ||
Line 224: | Line 225: | ||
| ''filename'' | Absolute path to source remote file (in ''value'' attribute) | | | ''filename'' | Absolute path to source remote file (in ''value'' attribute) | | ||
| ''destination'' | Absolute path to destination local file (in ''value'' attribute)((File name may differ from name of source file.)) | | | ''destination'' | Absolute path to destination local file (in ''value'' attribute)((File name may differ from name of source file.)) | | ||
+ | | ''size'' | Number of bytes transferred. &beta_feature | | ||
Example: | Example: | ||
Line 230: | Line 232: | ||
<filename value="/home/martin/public_html/about.html" /> | <filename value="/home/martin/public_html/about.html" /> | ||
<destination value="d:\www\about.htm" /> | <destination value="d:\www\about.htm" /> | ||
+ | <size value="55387" /> | ||
<result success="true" /> | <result success="true" /> | ||
</download> | </download> | ||
Line 378: | Line 381: | ||
| ''filename'' | Absolute path to source local file (in ''value'' attribute) | | | ''filename'' | Absolute path to source local file (in ''value'' attribute) | | ||
| ''destination'' | Absolute path to destination remote file (in ''value'' attribute)((File name may differ from name of source file.)) | | | ''destination'' | Absolute path to destination remote file (in ''value'' attribute)((File name may differ from name of source file.)) | | ||
+ | | ''size'' | Number of bytes transferred. &beta_feature | | ||
Example: | Example: | ||
Line 384: | Line 388: | ||
<filename value="d:\www\about.htm" /> | <filename value="d:\www\about.htm" /> | ||
<destination value="/home/martin/public_html/about.html" /> | <destination value="/home/martin/public_html/about.html" /> | ||
+ | <size value="55387" /> | ||
<result success="true" /> | <result success="true" /> | ||
</upload> | </upload> | ||
Line 476: | Line 481: | ||
<code xml> | <code xml> | ||
<?xml version="1.0" encoding="UTF-8"?> | <?xml version="1.0" encoding="UTF-8"?> | ||
- | <session xmlns="http://winscp.net/schema/session/1.0" name="user@host" start="2015-01-30T06:45:57.008Z"> | + | <session xmlns="http://winscp.net/schema/session/1.0" name="user@host" start="2021-12-03T06:45:57.008Z"> |
<download> | <download> | ||
<filename value="/path/file1.txt" /> | <filename value="/path/file1.txt" /> | ||
<destination value="C:\path\file1.txt" /> | <destination value="C:\path\file1.txt" /> | ||
+ | <size value="2022" /> | ||
<result success="true" /> | <result success="true" /> | ||
</download> | </download> | ||
Line 485: | Line 491: | ||
<filename value="/path/file2.txt" /> | <filename value="/path/file2.txt" /> | ||
<destination value="C:\path\file2.txt" /> | <destination value="C:\path\file2.txt" /> | ||
+ | <size value="5782" /> | ||
<result success="true" /> | <result success="true" /> | ||
</download> | </download> |