Polished write success message and man page
This commit is contained in:
parent
e7ea38d143
commit
6be36c8726
@ -290,9 +290,16 @@ would be done with shell command cp -r.
|
|||||||
.TP
|
.TP
|
||||||
\fB\-rm\fR iso_rr_path [...]
|
\fB\-rm\fR iso_rr_path [...]
|
||||||
Delete the given files from the ISO image.
|
Delete the given files from the ISO image.
|
||||||
|
.br
|
||||||
|
Note: This does not free any space on the -indev media, even if
|
||||||
|
the deletion is committed to that same media.
|
||||||
|
.br
|
||||||
|
> The image size will shrink if the image is written to a different
|
||||||
|
media in modification mode.
|
||||||
.TP
|
.TP
|
||||||
\fB\-rm_r\fR iso_rr_path [...]
|
\fB\-rm_r\fR iso_rr_path [...]
|
||||||
Delete the given files or directory trees from the ISO image.
|
Delete the given files or directory trees from the ISO image.
|
||||||
|
See also the note with option -rm.
|
||||||
.TP
|
.TP
|
||||||
\fB\-mv\fR iso_rr_path [...] iso_rr_path
|
\fB\-mv\fR iso_rr_path [...] iso_rr_path
|
||||||
Rename the given file objects in the ISO tree to the last
|
Rename the given file objects in the ISO tree to the last
|
||||||
|
@ -1 +1 @@
|
|||||||
#define Xorriso_timestamP "2007.11.02.143658"
|
#define Xorriso_timestamP "2007.11.02.184705"
|
||||||
|
@ -351,7 +351,8 @@ int Xorriso_write_growing(struct XorrisO *xorriso, int flag)
|
|||||||
tracks= burn_session_get_tracks(sessions[0], &num_tracks);
|
tracks= burn_session_get_tracks(sessions[0], &num_tracks);
|
||||||
if(tracks!=NULL && num_tracks>0) {
|
if(tracks!=NULL && num_tracks>0) {
|
||||||
burn_track_get_counters(tracks[0],&readcounter,&writecounter);
|
burn_track_get_counters(tracks[0],&readcounter,&writecounter);
|
||||||
sprintf(xorriso->info_text, "Read: %d sectors , Written: %d sectors\n",
|
sprintf(xorriso->info_text,
|
||||||
|
"ISO image produced: %d sectors. Written to media: %d sectors\n",
|
||||||
(int) readcounter/2048, (int) writecounter/2048);
|
(int) readcounter/2048, (int) writecounter/2048);
|
||||||
Xorriso_info(xorriso, 0);
|
Xorriso_info(xorriso, 0);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user