This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 183234 - I/O Breakpoint
Summary: I/O Breakpoint
Status: NEW
Alias: None
Product: debugger
Classification: Unclassified
Component: Java (show other bugs)
Version: 6.x
Hardware: Other Linux
: P3 normal (vote)
Assignee: issues@debugger
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-03-31 05:15 UTC by Jaroslav Tulach
Modified: 2010-03-31 05:15 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jaroslav Tulach 2010-03-31 05:15:28 UTC
These days I am trying to find out what class in my big application is touching various files on disk. I've end up with adding various breakpoints into java.io.File methods, but this approach is fragile (I need to synchronize conditions of all these breakpoints) and not ultimate (I may forget about some methods).

I would be perfect to have an "I/O breakpoint". That would attach to all the File, FileXYZStream, etc. methods. It would allow "read,write,both" mode. One could also set a condition on the name of the file, to filter only those files that are interesting.