- Timestamp:
- Jun 21, 2024, 10:19:12 AM (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/scripts/Common.pm
r10099 r10512 15 15 use File::Basename; 16 16 use File::Spec::Functions; 17 use Proc::ProcessTable; 17 18 18 19 #$| = 1; # Buffer off (print) … … 102 103 } 103 104 105 # blurt opens a new file, prints the data in $data to it and closes the file. 106 # If $options->{append} is set to a true value, data will be appended to the file. Default is false, existing files will be overwritten. 107 # 108 # If the string is a Unicode string, use the utf8 option: 'blurt( $unicode_string, $file, {utf8 => 1} );' 109 sub blurt { 110 my ( $data, $file, $options ) = @_; 111 112 # legacy signature 113 if ( defined $options and ref $options eq "" ) { 114 $options = { append => 1 }; 115 } 116 117 $options = {} unless defined $options; 118 119 local $Log::Log4perl::caller_depth = $Log::Log4perl::caller_depth + 1; 120 121 $options->{append} = 0 unless defined $options->{append}; 122 123 #_confirm( ( $options->{append} ? "Appending" : "Writing" ) . " " . length ($data) . " bytes to $file" ) or return 1; 124 125 open my $fh, ">" . ( $options->{append} ? ">" : "" ) . $file 126 or LOGCROAK("Cannot open $file for writing ($!)"); 127 128 binmode $fh; # Win32 wants that 129 130 if ( $options->{utf8} ) { 131 binmode $fh, ":utf8"; 132 } 133 134 print $fh $data 135 or LOGCROAK("Cannot write to $file ($!)"); 136 close $fh 137 or LOGCROAK("Cannot close $file ($!)"); 138 } 139 104 140 #** @function filePosition ($file, $filePos) 105 141 # @brief Save position of a file in an idxfile.
Note:
See TracChangeset
for help on using the changeset viewer.