active questions tagged io - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T16:14:30Z http://stackoverflow.com/feeds/tag/io http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1816673/how-do-i-check-if-a-file-exists-java-on-windows 1 How do I check if a file exists? (Java on Windows) DVK 2009-11-29T20:32:39Z 2009-11-30T15:03:09Z <p>How can I check whether a file exists, before openinging it for reading in Java? (equivalent of Perl's <code>-e $filename</code>). </p> <p>The only <a href="http://stackoverflow.com/questions/1237235/check-file-exists-java">similar question on SO</a> dealt with writing the file and was thus answered using FileWriter which is obviously not applicable here.</p> <p>If possible I'd prefer a real API call returning true/false as opposed to some "Call API to open a file and catch when it throws an exception which you check for 'no file' in text", but I can live with the latter.</p> http://stackoverflow.com/questions/1819739/how-do-i-correct-this-silent-failure-to-write-files-using-java-io 1 How do I correct this silent failure to write files using Java IO? James McMahon 2009-11-30T13:09:16Z 2009-11-30T13:57:17Z <p>I am encountering a strange issue with the commons-io/java-io. Essentially my file creation is failing silently without an exception.</p> <pre><code>FileUtils.writeLines(file, collectionOfStrings); </code></pre> <p>I've looked through the commons code to try and figure why this failing silently, but to me it looks like it should be throwing an exception. (See lines 1338, 163 in <a href="http://svn.apache.org/repos/asf/commons/proper/io/tags/commons-io-1.4/src/java/org/apache/commons/io/FileUtils.java" rel="nofollow">FileUtils.java</a> and line 927 in <a href="http://svn.apache.org/repos/asf/commons/proper/io/tags/commons-io-1.4/src/java/org/apache/commons/io/IOUtils.java" rel="nofollow">IOUtils.java</a>.)</p> <p>In an effort to try to correct this issue, I added this check to the code after the previous line,</p> <pre><code>if (!file.exists()) { logger.warn("File creation failed."); } </code></pre> <p>However, even when file creation fails, this block is not being entered.</p> <p>I'm at my wits end with this one, can anyone with more experience with Java IO help me out?</p> http://stackoverflow.com/questions/375427/non-blocking-read-on-a-stream-in-python 5 Non-blocking read on a stream in python. Mathieu Pagé 2008-12-17T17:56:34Z 2009-11-27T23:13:20Z <p>Hi,</p> <p>I'm using the <a href="http://docs.python.org/library/subprocess.html" rel="nofollow">subprocess module</a> to start a subprocess and connect to it's output stream (stdout). I want to be able to execute non-blocking reads on its stdout. Is there a way to make .readline non-bloking or to check if there is data on the stream before I invoke .readline? I'd like this to be portable or at least work under Windows and Linux.</p> <p>here is how I do it for now (It's blocking on the .readline if no data is avaible):</p> <pre><code>p = subprocess.Popen('myprogram.exe', stdout = subprocess.PIPE) str = p.stdout.readline() </code></pre> <p>Thanks for your help.</p> http://stackoverflow.com/questions/1807798/c-tcp-ip-client-having-an-io-exception 0 C# TCP/IP Client having an IO Exception. Gio 2009-11-27T10:00:49Z 2009-11-27T10:52:10Z <p>The IO Exception: "Unable to read data from the transport connection: An established connection was aborted by the software in your host machine."</p> <p>The code has been copied from a tutorial and I'm sure that this error has something to do with my own machine. All of my firewalls, ESET and Windows, are off. The clients connect via port 55555.</p> <p>edit:</p> <p><strong>Client</strong></p> <pre><code> static void Main(string[] args) { MakeClientCallToServer("test"); MakeClientCallToServer("test2"); MakeClientCallToServer("test3"); // Now send a bunch of messages... string msg; for (int i = 0; i &lt; 100; i++) { msg = string.Format(Thread.CurrentThread.CurrentCulture, "I'll not be ignored! (round {0})", i); ThreadPool.QueueUserWorkItem(new WaitCallback(MakeClientCallToServer), msg); } Console.WriteLine("\n Press any key to continue... "); Console.Read(); } static void MakeClientCallToServer(object objMsg) { string msg = (string)objMsg; MyTcpClient client = new MyTcpClient(IPAddress.Loopback, 55555); client.ConnectToServer(msg); } </code></pre> <p><strong>Server</strong></p> <pre><code> static MyTcpServer server; static void Main(string[] args) { ThreadPool.QueueUserWorkItem(RunServer); Console.WriteLine("Press esc to stop the server..."); ConsoleKeyInfo cki; while (true) { cki = Console.ReadKey(); if (cki.Key == ConsoleKey.Escape) { break; } } } static void RunServer(object stateInfo) { //Initiate the server) server = new MyTcpServer(IPAddress.Loopback, 55555); server.Listen(); } </code></pre> <p>I've already made classes named MyTcpServer and MyTcpClient to handle all of the common connections, threading, etc.</p> http://stackoverflow.com/questions/1763712/aiowrite-on-linux-with-rtkaio-is-sometimes-long 0 aio_write on linux with rtkaio is sometimes long Drakosha 2009-11-19T14:36:21Z 2009-11-26T13:05:29Z <p>I'm using async io on linux with rtkaio library. In my tests everything works perfectly, but, in my real application i see that aio_write which is supposed to return very fast, is very slow. It can take more than 100 milis to write a 128KB to a O_DIRECT padded file. Both my test and the application use same I/O size, i check on the same file system (GFS).</p> <p>I added counting and i see that there are about 50% of async io operations that are short (shorter then 2 milis) and 50% that are long (longer than 2 milis).</p> <p>I also checked that the test and the application both use the same rtkaio library.</p> <p>I'm pretty lost, anyone any ideas where should i look?</p> <p>Another my related question: <a href="http://stackoverflow.com/questions/1799537/proc-sys-fs-aio-nr-is-never-higher-than-1024-aio-on-linux">http://stackoverflow.com/questions/1799537/proc-sys-fs-aio-nr-is-never-higher-than-1024-aio-on-linux</a></p> http://stackoverflow.com/questions/1656886/restricting-file-folder-write-to-paths-other-then-the-specified-root 0 Restricting file/folder write to paths other then the specified root dr. evil 2009-11-01T11:05:48Z 2009-11-22T05:09:24Z <p>In .NET is there any API that allows me to restrict some IO operations to the specified path?</p> <p>For example:</p> <ul> <li><code>Root Path: C:\Test\</code></li> </ul> <p>Now I want to call a function like this:</p> <ul> <li><code>IO.Directory.CreateDirectory("../testing/",Root)</code></li> </ul> <p>And now I want the API to handle this situation for me and do not create a folder other than the specified directory.</p> <p>So this should be created as <code>c:\Test\testing\</code> instead of <code>c:\testing\</code>.</p> <p>I know I can manually do this but I thought maybe there is an API that I don't know which supports such a thing.</p> <p>The thing is I've got bunch of random strings and I'll crate folders and files based on them, I don't want to write anything to another folder because one of these strings include a string like "../"</p> http://stackoverflow.com/questions/1581674/differences-between-ruby-file-access-mode-r-and-w 1 differences between ruby file access mode r+ and w+ Yousui 2009-10-17T07:45:04Z 2009-11-20T21:00:46Z <p>hi all, when using files in the ruby language, what is the difference between r+ and w+ mode? and a+? great thanks.</p> http://stackoverflow.com/questions/1713522/how-can-i-rename-file 0 How can i Rename File??? mohit Soni 2009-11-11T06:59:35Z 2009-11-20T09:49:58Z <p>Hiii.... All.... </p> <p>My purpose is to rename one File... what i m Doing is.... i m Searching A perticular String in a text File... among So many files and if that perticular text Found.. then i waana Rename that text File with a Given String ....</p> <pre><code> String opcode="OPCODES"; // String that i waana Search File file = new File("D:\\CFF1156"); // all files are inside this Folder System.out.println("The File Name is :"+file.getName()); File[] f = file.listFiles(); System.out.println("The Length of File is :"+f.length); Boolean flag=false; StringBuffer contents = new StringBuffer(); BufferedReader reader = null; for(int i=0;i&lt;f.length;i++) { try{ reader = new BufferedReader(new FileReader(f[i])); String text = null; while ((text = reader.readLine()) != null) { if(text.contains(opcode)) { System.out.println("Found"); System.out.println("The File Containing the Search text is :"+f[i]); f[i].renameTo(new File("D://CFF1156/changed.txt")); System.out.println("renamed :"+(f[i].renameTo(new File("D://CFF1156/changed.txt")))); if(f[i].renameTo(new File("D://CFF1156/changed.txt"))) { System.out.println("Successfully renamed"); } else { System.out.println("Error"); } } } } catch(Exception e) { System.out.println(e.getMessage()); } finally { try { if (reader != null) { reader.close(); } } catch (IOException e) { e.printStackTrace(); } } } </code></pre> <p>The Above Code is Searchiong the perticular File... but i m not able to rename it... plz Give me .. Some Working Solution to this P{roblem Thanx in Advance</p> http://stackoverflow.com/questions/1768083/java-why-isnt-my-file-writing-working 0 Java: Why isn't my file writing working? Rosarch 2009-11-20T03:09:13Z 2009-11-20T09:00:18Z <p>I'm trying to write a file from my Java program, but nothing happens. I'm not getting any exceptions or errors, it's just silently failing.</p> <pre><code> try { File outputFile = new File(args[args.length - 1]); outputFile.delete(); outputFile.createNewFile(); PrintStream output = new PrintStream(new FileOutputStream(outputFile)); TreePrinter.printNewickFormat(tree, output); } catch (IOException e) { e.printStackTrace(); return; } </code></pre> <p>Here is the <code>TreePrinter</code> function:</p> <pre><code>public static void printNewickFormat(PhylogenyTree node, PrintStream stream) { if (node.getChildren().size() &gt; 0) { stream.print("("); int i = 1; for (PhylogenyTree pt : node.getChildren()) { printNewickFormat(pt, stream); if (i != node.getChildren().size()) { stream.print(","); } i++; } stream.print(")"); } stream.format("[%s]%s", node.getAnimal().getLatinName(), node.getAnimal().getName()); } </code></pre> <p>What am I doing wrong?</p> http://stackoverflow.com/questions/437728/recursive-file-search-in-net 4 Recursive File Search in .net Saif Khan 2009-01-13T01:52:23Z 2009-11-19T23:40:33Z <p>Hi, I need to search a drive (C:, D: etc) for a partuicular file type (extension like .xml, .csv, .xls). How do I preform a recursive search to loop all directories and inner directories and return the full path of where the file(s) are? or where can I get information on this?</p> <p>VB.NET or C# </p> <p>Thanks</p> <p>Edit ~ I am running into some errors like unable to access system volume access denied etc. Does anyone know where I can see some smaple code on implementing a file search? I just need to search a selected drive and return the full path of the file type for all the files found.</p> http://stackoverflow.com/questions/1744290/how-do-i-get-the-inputstream-of-decompressed-data-from-an-inputstream-of-gziped-d 3 How do I get the InputStream of decompressed data from an InputStream of GZIPed data? Ryan Elkins 2009-11-16T19:23:43Z 2009-11-16T19:51:13Z <p>I call a service which returns a gzipped file. I have the data as an InputStream (courtesy of <code>javax.activation.DataHandler.getInputStream();</code>) from the response. </p> <p>What I would like to do is, without writing anything to disk, get an InputStream of the decompressed data in the file that is in the archive. The compressed file in this case is an xml document that I am trying to unmarshal using <code>javax.xml.bind.Unmarshaller</code> which takes an InputStream. </p> <p>I'm currently trying to write the InputStream to an OutputStream (decompressing the data) and then I'll need to write it back to an InputStream. It's not working yet so I thought I would see if there was a better (I would hope so) approach.</p> <p>I can write the initial InputStream to disk and get a gz file, and then read that file, get the compressed file out of it and go from there but I'd rather keep it all in memory is possible.</p> <p>Update 1: Here is my current (not working - get a "Not in GZIP format" exception):</p> <pre><code> ByteArrayInputStream xmlInput = null; try { InputStream in = dh.getInputStream(); //dh is a javax.activation.DataHandler BufferedInputStream bis = new BufferedInputStream(in); ByteArrayOutputStream bo = new ByteArrayOutputStream(); int bytes_read = 0; byte[] dataBuf = new byte[4096]; while ((bytes_read = bis.read(dataBuf)) != -1) { bo.write(dataBuf, 0, bytes_read); } ByteArrayInputStream bin = new ByteArrayInputStream(bo.toByteArray()); GZIPInputStream gzipInput = new GZIPInputStream(bin); ByteArrayOutputStream out = new ByteArrayOutputStream(); dataBuf = new byte[4096];; bytes_read = 0; while ((bytes_read = gzipInput.read(dataBuf)) &gt; 0) { out.write(dataBuf, 0, bytes_read); } xmlInput = new ByteArrayInputStream(out.toByteArray()); </code></pre> <p>If instead of writing to a ByteArrayOutputStream I write to a FileOutputStream the first time around I get a compressed file (which I can manually open to get the xml file within) and the service (eBay) says it should be a gzip file so I'm not sure why I get a "Not in GZIP format" error.</p> <p>Update 2: I tried something a little different - same error ("Not in GZIP format"). Wow, I just tried to end that parenthesis with a semi-colon. Anyways, here is my second attempt, which still does not work:</p> <pre><code> ByteArrayInputStream xmlInput = null; try { GZIPInputStream gzipInput = new GZIPInputStream(dh.getInputStream()); ByteArrayOutputStream bo = new ByteArrayOutputStream(); int bytes_read = 0; byte[] dataBuf = new byte[4096]; while ((bytes_read = gzipInput.read(dataBuf)) != -1) { bo.write(dataBuf, 0, bytes_read); } xmlInput = new ByteArrayInputStream(bo.toByteArray()); </code></pre> http://stackoverflow.com/questions/953428/event-loop-vs-multithread-blocking-io 2 Event Loop vs Multithread blocking IO Unknown 2009-06-04T22:20:41Z 2009-11-16T18:20:02Z <p>I was reading a comment about server architecture. </p> <p><a href="http://news.ycombinator.com/item?id=520077" rel="nofollow">http://news.ycombinator.com/item?id=520077</a></p> <p>In this comment, the person says 3 things:</p> <ol> <li>The event loop, time and again, has been shown to truly shine for a high number of low activity connections.</li> <li>In comparison, a blocking IO model with threads or processes has been shown, time and again, to cut down latency on a per-request basis compared to an event loop.</li> <li>On a lightly loaded system the difference is indistinguishable. Under load, most event loops choose to slow down, most blocking models choose to shed load.</li> </ol> <p>Are any of these true?</p> <p>And also another article here titled "Why Events Are A Bad Idea (for High-concurrency Servers)"</p> <p><a href="http://www.usenix.org/events/hotos03/tech/vonbehren.html" rel="nofollow">http://www.usenix.org/events/hotos03/tech/vonbehren.html</a></p> http://stackoverflow.com/questions/930989/is-there-a-simple-method-for-checking-whether-a-ruby-io-instance-will-block-on-re 0 Is there a simple method for checking whether a Ruby IO instance will block on read()? sjbach 2009-05-31T01:00:23Z 2009-11-16T15:10:22Z <p>I'm looking for a method in Ruby which is basically this:</p> <pre><code>io.ready_for_read? </code></pre> <p>I just want to check whether a given <code>IO</code> object (in my case, the result of a <code>popen</code> call) has output available, i.e. a follow up call <code>io.read(1)</code> will not block.</p> <p>These are the two options I see, neither of which I like:</p> <ol> <li><p><code>io.read_nonblock</code> - too thin an abstraction of Unix <code>read()</code> -- I don't want to deal with <code>errno</code> error handling.</p></li> <li><p><code>io.select</code> with timeout 0 -- obfuscates the purpose of this simple operation.</p></li> </ol> <p>Is there a better alternative that I have overlooked?</p> http://stackoverflow.com/questions/1713332/file-i-o-in-drscheme 0 File I/O In DrScheme Claudiu 2009-11-11T05:54:25Z 2009-11-11T06:17:08Z <p>(read) takes in a string from stdin, parses it as an s-expression, and returns that expression. How do I do the exact same thing, except taking input from a file?</p> http://stackoverflow.com/questions/1712947/flush-stdout-in-drscheme 0 Flush stdout in DrScheme? Claudiu 2009-11-11T04:10:30Z 2009-11-11T05:02:47Z <p>I can do it in Java, Python, Haskell... how do you do it in DrScheme? A customary google search didn't yield the answer.</p> http://stackoverflow.com/questions/1707569/is-file-exists-an-expensive-operation 2 Is File.Exists an expensive operation? Matt W 2009-11-10T12:22:00Z 2009-11-10T12:58:30Z <p>Re: <a href="http://msdn.microsoft.com/en-us/library/system.io.file.exists.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.io.file.exists.aspx</a></p> <p>Does anyone know if this is a particularly slow or locking operation which could impact server performance in a large environment?</p> <p>Thanks,</p> <p>Matt.</p> http://stackoverflow.com/questions/1706496/java-effective-files-copying 0 java - effective files copying michal 2009-11-10T08:56:28Z 2009-11-10T11:32:27Z <p>hi. i would like to know which is the best way to copy large number of files.</p> http://stackoverflow.com/questions/1160050/java-io-streams-what-are-the-differences 4 Java IO streams; what are the differences Lawrence 2009-07-21T15:44:46Z 2009-11-10T10:25:01Z <p>Hello,</p> <p>Java IO has many different IO streams, (FileInputStream, FileOutputStream, FileReader, FileWriter, BufferedStreams... etc) and I am confused in determining the differences between them. What are some examples where one stream type is preferred over another, and what are the real differences between them?</p> <p>-Lawrence</p> http://stackoverflow.com/questions/108183/how-to-prevent-sigpipes-or-handle-them-properly 5 How to prevent SIGPIPEs (or handle them properly). jkramer 2008-09-20T13:43:21Z 2009-11-10T04:58:36Z <p>I have a small server program that accepts connections on a TCP or local UNIX socket, reads a simple command and, depending on the command, sends a reply. The problem is that the client may have no interest in the answer sometimes and exits early, so writing to that socket will cause a SIGPIPE and make my server crash. What's the best practice to prevent the crash here? Is there a way to check if the other side of the line is still reading? (select() doesn't seem to work here as it always says the socket is writable). Or should I just catch the SIGPIPE with a handler and ignore it?</p> http://stackoverflow.com/questions/329355/cannot-delete-directory-with-directory-deletepath-true 5 Cannot delete directory with Directory.Delete(path, true) Jason Anderson 2008-11-30T20:57:03Z 2009-11-09T21:01:43Z <p>I'm using .NET 3.5, trying to recursively delete a directory using:</p> <pre><code>Directory.Delete(myPath, true); </code></pre> <p>My understanding is that this should throw if files are in use or there is a permissions problem, but otherwise it should delete the directory and all of its contents.</p> <p>However, I occasionally get this:</p> <pre><code>System.IO.IOException: The directory is not empty. at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) at System.IO.Directory.DeleteHelper(String fullPath, String userPath, Boolean recursive) at System.IO.Directory.Delete(String fullPath, String userPath, Boolean recursive) ... </code></pre> <p>I'm not surprised that the method sometimes throws, but I'm surprised to get this particular message when recursive is true. (I <em>know</em> the directory is not empty.)</p> <p>Is there a reason I'd see this instead of AccessViolationException?</p> http://stackoverflow.com/questions/1675366/a-haskell-function-of-type-io-string-string 2 A Haskell function of type: IO String-> String ChrisQuignon 2009-11-04T17:24:23Z 2009-11-08T13:41:25Z <p>I wrote a bunch of code in Haskell to create an index of a text. The top function looks like this:</p> <pre><code>index :: String -&gt; [(String, [Integer])] index a = [...] </code></pre> <p>Now I want to give this function a String read from a file:</p> <pre><code>index readFile "input.txt" </code></pre> <p>Which won't work because readFile is of type FilePath -> IO String.</p> <blockquote> <p>Couldn't match expected type 'String' against inferred type 'IO String'</p> </blockquote> <p>I see the error, but I can't find any function with type:</p> <pre><code>IO String -&gt; String </code></pre> <p>I guess the key to success lies somewhere under some Monads, but I could not find a way to solve my problem.</p> http://stackoverflow.com/questions/1625234/how-to-append-text-to-an-existing-file-in-java 3 How to append text to an existing file in Java flyingfromchina 2009-10-26T14:43:50Z 2009-11-06T15:50:46Z <p>I need to append text repeatedly to an existing file in Java. How do I do that?</p> http://stackoverflow.com/questions/1682194/java-read-file-from-network-device 0 java read file from network device soField 2009-11-05T17:26:31Z 2009-11-06T03:22:17Z <p>can someone help me to find a tutorial or sample java code for</p> <p>reading file from a any machine which is same network</p> http://stackoverflow.com/questions/1678435/pdf-to-string-in-java 0 PDf to String in Java Ankur 2009-11-05T04:59:28Z 2009-11-05T16:29:47Z <p>What is the easiest way to get the text (words) or a PDF doc as a one long String or array of Strings.</p> <p>I have tried pdfbox but that is not working for me. </p> http://stackoverflow.com/questions/1679661/system-io-exception -1 System.IO exception? [closed] Ramesh 2009-11-05T10:32:32Z 2009-11-05T10:35:03Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1678817/system-io-exception">System.IO exception?</a> </p> </blockquote> <p>hi,</p> <p>In winforms insight picturebox control showing one image, the same time i want access that image property of like "summary,title,author using DSOfile class via ,when i access it and store some data in property(summary,title,author) i got error like "can't access</p> http://stackoverflow.com/questions/1678817/system-io-exception -2 System.IO exception? Ramesh 2009-11-05T07:05:50Z 2009-11-05T08:13:35Z <p>I have Winforms insight have one picture box. When I double click, my logic writes (using stream class) a picture and then stores one in the system folder. When I am trying to write, I get an error like "can't access file; it's being processed by another process".</p> <p>How can I overcome this problem?</p> http://stackoverflow.com/questions/585206/what-is-an-async-io-operation-in-net 1 What is an "async IO operation" in .NET? Vilx- 2009-02-25T08:55:13Z 2009-11-04T02:00:04Z <p>To cut a long story short - read <a href="http://piers7.blogspot.com/2005/11/threadstatic-callcontext-and_02.html" rel="nofollow">this article</a> first and then <a href="http://www.lhotka.net/WeBlog/PermaLink,guid,019e3c37-38ed-492e-b769-16e1a57fed0a.aspx" rel="nofollow">this article</a>. In short - it's the old issue about ASP.NET and randomly switching among threads. Well, not so randomly actually. As the second article explains, this only happens "when your thread performs an async IO operation". So... what the heck is an async IO operation in this case? I'm familiar with the standard <em>Begin...End...IAsyncResult</em> and the event model for asynchronous IO. But I can't see how this could be tied together with a thread switch.</p> <p>The point is - I'm simply afraid of any "hidden" asynchronous IO that my software could be doing (and which would then provoke a thread switch). But how to identify them?</p> http://stackoverflow.com/questions/1661322/too-many-open-file-handles 3 Too many open file handles david 2009-11-02T13:24:07Z 2009-11-02T15:31:43Z <p>I'm working on a huge legacy Java application, with a lot of handwritten stuff, which nowadays you'd let a framework handle. </p> <p>The problem I'm facing right now is that we are running out of file handles on our Solaris Server. I'd like to know what's the best way to track open file handles? Where to look at and what can cause open file handles to run out?</p> <p>I cannot debug the application under Solaris, only on my Windows development environment. Is is even reasonable to analyze the open file handles under Windows?</p> http://stackoverflow.com/questions/1656961/xor-on-a-very-big-file 0 XOR on a very big file Doug 2009-11-01T11:42:59Z 2009-11-02T01:37:36Z <p>I would like to XOR a very big file (~50 Go).</p> <p>More precisely, I would like to do so by XORing each block of 32 bytes of a plaintext file (because of lack of memory) with the key 3847611839 and create (block after block) a new cipher file.</p> <p>Thank You for any help!!</p> http://stackoverflow.com/questions/1649405/example-of-cpu-and-i-o-burst-cycle 0 Example of CPU and I/O burst cycle? tsubasa 2009-10-30T12:03:37Z 2009-10-30T12:43:26Z <p>Can somebody give me an example of CPU and <a href="http://en.wikipedia.org/wiki/Input/output" rel="nofollow">I/O</a> burst cycle? </p> <p>I know the CPU must do its calculation during the burst, but how about the I/O? What actually happens during the I/O time? </p>