User Fred - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T23:44:02Z http://stackoverflow.com/feeds/user/177 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1344094/how-do-i-open-a-directory-with-createfile-in-c-to-examine-deleted-entries 3 How do I open a directory with CreateFile in C# to examine deleted entries? Fred 2009-08-27T22:28:29Z 2009-09-06T07:50:42Z <p>How do I open a directory with CreateFile in C# to examine entries of deleted files? Or is it now impossible? I remember way back when being able to open a directory on an NTFS partition using CreateFile or possibly CreateFileEx, but that was using C++ under an older OS.</p> <p>So far I've got the Windows API calls (to kernel32.dll) working enough to read an existing file but it won't open a directory:</p> <pre><code>using System; using System.Collections.Generic; using System.Text; using System.IO; using Microsoft.Win32.SafeHandles; using System.Runtime.InteropServices; using System.Security.Permissions; using System.Runtime.ConstrainedExecution; using System.Security; namespace Kernel_Test { class Program { static void Main(string[] args) { Kernel_Tools cKT = new Kernel_Tools(); cKT.DoTest("C:\\Temp"); cKT.DoTest("C:\\Temp\\test.txt"); } } [SecurityPermission(SecurityAction.InheritanceDemand, UnmanagedCode = true)] [SecurityPermission(SecurityAction.Demand, UnmanagedCode = true)] class Kernel_Tools { public void DoTest(string cTarget) { IntPtr cFile = NativeMethods.CreateFile( cTarget, NativeMethods.GENERIC_READ /* 0 or NativeMethods.GENERIC_READ */ , FileShare.Read, IntPtr.Zero /* failed try: NativeMethods.OPEN_ALWAYS */, (FileMode) NativeMethods.OPEN_EXISTING, NativeMethods.FILE_FLAG_BACKUP_SEMANTICS /* 0 */ , IntPtr.Zero); Console.WriteLine(cTarget); Console.WriteLine(cFile); if ((int)cFile != -1) { int length = 20; byte[] bytes = new byte[length]; int numRead = 0; int ErrorCheck = NativeMethods.ReadFile(cFile, bytes, length, out numRead, IntPtr.Zero); // This sample code will not work for all files. //int r = NativeMethods.ReadFile(_handle, bytes, length, out numRead, IntPtr.Zero); // Since we removed MyFileReader's finalizer, we no longer need to // call GC.KeepAlive here. Platform invoke will keep the SafeHandle // instance alive for the duration of the call. if (ErrorCheck == 0) { Console.WriteLine("Read failed."); NativeMethods.CloseHandle(cFile); return; //throw new Win32Exception(Marshal.GetLastWin32Error()); } if (numRead &lt; length) { byte[] newBytes = new byte[numRead]; Array.Copy(bytes, newBytes, numRead); bytes = newBytes; } for (int i = 0; i &lt; bytes.Length; i++) Console.Write((char)bytes[i]); Console.Write("\n\r"); // Console.WriteLine(); NativeMethods.CloseHandle(cFile); } } } [SuppressUnmanagedCodeSecurity()] internal static class NativeMethods { // Win32 constants for accessing files. internal const int GENERIC_READ = unchecked((int)0x80000000); internal const int FILE_FLAG_BACKUP_SEMANTICS = unchecked((int)0x02000000); internal const int OPEN_EXISTING = unchecked((int)3); // Allocate a file object in the kernel, then return a handle to it. [DllImport("kernel32", CharSet = CharSet.Auto, SetLastError = true)] internal extern static IntPtr CreateFile( String fileName, int dwDesiredAccess, System.IO.FileShare dwShareMode, IntPtr securityAttrs_MustBeZero, System.IO.FileMode dwCreationDisposition, int dwFlagsAndAttributes, IntPtr hTemplateFile_MustBeZero); // Use the file handle. [DllImport("kernel32", SetLastError = true)] internal extern static int ReadFile( IntPtr handle, byte[] bytes, int numBytesToRead, out int numBytesRead, IntPtr overlapped_MustBeZero); // Free the kernel's file object (close the file). [DllImport("kernel32", SetLastError = true)] [ReliabilityContract(Consistency.WillNotCorruptState, Cer.MayFail)] internal extern static bool CloseHandle(IntPtr handle); } } </code></pre> <p>Edit 1: Modified it to use OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, and GENERIC_READ.</p> <p>This will open and display the start of a the specified text file as did the original when run as a Vista administrative user, but it still fails to open the directory. I'm guessing I need the SE_BACKUP_NAME and SE_RESTORE_NAME privileges but am unsure how to specify those other than to write this as a service that runs as Local Machine (something I have only the foggiest idea of how to do).</p> http://stackoverflow.com/questions/1182086/image-property-tag-constant/1354106#1354106 0 Answer by Fred for Image Property Tag Constant Fred 2009-08-30T15:31:57Z 2009-08-30T15:31:57Z <p>If you have the Microsoft SDKs, you can find all the constants in a C header file named GdiPlusImaging.h</p> <p>It would be simple enough to include the header in a C project, but you'd have to do some tweaking to put them all into enumerations.</p> http://stackoverflow.com/questions/1352550/how-can-i-undelete-a-file-using-c 2 How can I undelete a file using C#? Fred 2009-08-29T22:26:43Z 2009-08-30T07:00:25Z <p>I'm trying to find some lost .jpg pictures. Here's a .bat file to setup a simplified version of my situation</p> <pre><code>md TestSetup cd TestSetup md a cd a echo "Can we find this later?" &gt; a.abc del a.abc cd.. rd a </code></pre> <p>What code would be needed to open the text file again? I'm actually looking for .jpeg files that were treated in a similar manner</p> <p>More details: I'm trying to recover picture files from a previous one-touch backup where the directories and files have been deleted and everything was saved in the backup with a single character name and every file has the same 3 letter extension. There is a current backup but they need to view the previous deleted ones (or at least the .jpg files).</p> <p>Here's how I was trying to approach it: <a href="http://stackoverflow.com/questions/1344094/how-do-i-open-a-directory-with-createfile-in-c-to-examine-deleted-entries">C# code</a></p> http://stackoverflow.com/questions/1345146/what-is-the-value-of-openexisting-in-the-windows-api 0 What is the value of OPEN_EXISTING in the Windows API? Fred 2009-08-28T05:16:45Z 2009-08-28T06:39:29Z <p>What is the value of OPEN_EXISTING in the Windows API?</p> <p>I'm trying to open directories directly so I can examine the entries for deleted files, and I need to specify that value, but the C# environment doesn't include that under the FileMode enumeration.</p> <p>related question: <a href="http://stackoverflow.com/questions/1344094">CreateFile to view a directory</a></p> http://stackoverflow.com/questions/1345146/what-is-the-value-of-openexisting-in-the-windows-api/1345149#1345149 0 Answer by Fred for What is the value of OPEN_EXISTING in the Windows API? Fred 2009-08-28T05:17:51Z 2009-08-28T05:17:51Z <p>It appears that the value of OPEN_EXISTING is 3.</p> <p><a href="http://msdn.microsoft.com/en-us/library/aa363858%28VS.85%29.aspx" rel="nofollow">MSDN - CreateFile</a></p> http://stackoverflow.com/questions/150129/what-is-a-lambda 20 What is a Lambda? Fred 2008-09-29T18:56:51Z 2009-08-10T20:05:37Z <p>Could someone provide a good description of what a Lambda is? We have a tag for them and they're on the secrets of C# question, but I have yet to find a good definition and explanation of what they are in the first place.</p> http://stackoverflow.com/questions/1088804/after-importing-an-older-c-file-into-a-new-wpf-appliction-using-system-windows 0 After importing an older C# file into a new WPF appliction, "using System.Windows;" gives an error message. Fred 2009-07-06T19:25:50Z 2009-07-08T14:38:55Z <p>After importing an older C# file into a new WPF appliction, "using System.Windows;" gives an error message. This wasn't just one C# file, it was a number of them and I put them into a new project.</p> <p>What reference do I need to locate or change to get using System.Windows to resolve properly?</p> http://stackoverflow.com/questions/1088804/after-importing-an-older-c-file-into-a-new-wpf-appliction-using-system-windows/1088816#1088816 0 Answer by Fred for After importing an older C# file into a new WPF appliction, "using System.Windows;" gives an error message. Fred 2009-07-06T19:29:56Z 2009-07-08T14:37:38Z <p>This problem stems from resources which are associated at the Project level (References), which I had not added to the new project.</p> <p>To use old code unchanged, I can <a href="http://msdn.microsoft.com/en-us/library/wkze6zky%28VS.80%29.aspx" rel="nofollow">add a Reference</a> to System.Drawing, and use the old Windows Forms framework.</p> <p>If I want to convert the code to WPF, I need to add an association (Reference) to the new project. I can get <code>using System.Windows;</code> to work by adding a Reference in the new project to "PresentationFramework".</p> http://stackoverflow.com/questions/31031/whats-the-best-way-to-allow-a-user-to-browse-for-a-file-in-c 2 What's the best way to allow a user to browse for a file in C#? Fred 2008-08-27T19:45:34Z 2009-07-08T13:13:20Z <p>What's the best way to allow a user to browse for a file in C#?</p> http://stackoverflow.com/questions/1083427/what-are-the-various-components-of-visual-studio-team-system-each-designed-for 0 What are the various components of Visual Studio Team System each designed for? Fred 2009-07-05T04:04:23Z 2009-07-05T05:31:55Z <p>What are the various components of Visual Studio Team System each designed for?</p> <p>Our company was recently accepted to Microsoft BizSpark and now I have a blizzard of options to choose from. Right now I'm just needing version control and a coding environment but I'm not sure what distinguishes each of the available downloads.</p> http://stackoverflow.com/questions/1083427/what-are-the-various-components-of-visual-studio-team-system-each-designed-for/1083441#1083441 0 Answer by Fred for What are the various components of Visual Studio Team System each designed for? Fred 2009-07-05T04:21:05Z 2009-07-05T04:27:26Z <p>After digging a bit, it looks like 'Team Suite' is the one that has all the client components and Team Foundation Server is the server needed if you want to use the source control and other group elements.</p> <p>Team Suite - All the Client Components</p> <p>Architecture - Extra tools for diagramming classes.</p> <p>Database Edition - extra tools for DBAs (guess)</p> <p>Development Edition - extra tools for programmers</p> <p>Test Edition - extra testing tools for Web applications and services</p> <p>Team Foundation Server (TFS) - the server for the source control etc.</p> <p>If anyone can add the difference between the Standard and Workgroup editions of TFS, please do (or in a comment or your own answer).</p> http://stackoverflow.com/questions/1027601/experience-of-microsoft-bizspark-empower/1083415#1083415 1 Answer by Fred for Experience of Microsoft BizSpark / Empower Fred 2009-07-05T03:44:06Z 2009-07-05T03:44:06Z <p>In the BizSpark contract the liability is expressly limited to $100 on each side. So if you fall completely out of their coverage and they realize it, you have to pay the $100 and they cancel your subscriptions, but that's it.</p> <p>And really as long as you keep the startup as a technical entity, I don't know that they care whether or not it has (for instance) at least 30 hours a week total work being done. (Nor how they could find out.)</p> http://stackoverflow.com/questions/1083054/how-do-i-include-an-html-tag-in-a-c-summary-so-that-it-is-processed-as-text-not/1083055#1083055 11 Answer by Fred for How do I include an html tag in a C# summary so that it is processed as text (not parsed as XML)? Fred 2009-07-04T22:10:29Z 2009-07-04T22:10:29Z <p>The best solution I found was to change it so as to replace &lt; with <code>&amp;lt;</code> and > with <code>&amp;gt;</code></p> <p>as found in the <a href="http://www.w3.org/TR/REC-xml/" rel="nofollow">XML specifications</a>.</p> <p>That makes the example look as follows:</p> <pre><code> /// &lt;summary&gt; /// Creates a FlowSegment based on an HTML code, i.e. &amp;lt;bold&amp;gt; /// &lt;/summary&gt; /// &lt;param name="code"&gt;&lt;/param&gt; /// &lt;returns&gt;&lt;/returns&gt; public FlowSegment(string code) { </code></pre> <p>Which makes the desired tool-tip display properly.</p> http://stackoverflow.com/questions/1083054/how-do-i-include-an-html-tag-in-a-c-summary-so-that-it-is-processed-as-text-not 2 How do I include an html tag in a C# summary so that it is processed as text (not parsed as XML)? Fred 2009-07-04T22:10:08Z 2009-07-04T22:10:29Z <p>I'm writing an HTML parser in C# and want to include examples of the HTML that it handles in the summary XML blocks. How do I prevent the &lt; and > characters from messing up the auto-documentation of Visual Studio 2008?</p> <p>example:</p> <pre><code> /// &lt;summary&gt; /// Creates a FlowSegment based on an HTML code, i.e. &lt;bold&gt; /// &lt;/summary&gt; /// &lt;param name="code"&gt;&lt;/param&gt; /// &lt;returns&gt;&lt;/returns&gt; public FlowSegment(string code) { </code></pre> <p>Unfortunately the example causes the tool tip for this constructor to display (in part):</p> <pre><code>XML comment includes invalid XML </code></pre> <p>instead of the summary comment.</p> <p>How can I escape the &lt; and > characters?</p> http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/4927#4927 1 Answer by Fred for What is your solution to the FizzBuzz problem? Fred 2008-08-07T16:33:19Z 2009-05-15T21:12:50Z <p>Too bad I don't have any C compiler installed at the moment. I'm sure I'd mention that if I wanted a bit of easy performance but slightly harder to read, I'd change my if ... == 0 to if !(...). That said, here's my best shot w/o a compiler to test it handy:</p> <pre><code>#include "stdio.h" main() { char x = 1; char cheat = 0; do { cheat = 0; if x % 3 == 0 { cheat++; printf("Fizz"); } if x % 5 == 0 { cheat++; printf("Buzz"); } if cheat == 0 printf("%i", x); printf("\n"); x++; } while x &lt; 100; } </code></pre> http://stackoverflow.com/questions/664031/whats-the-best-way-to-let-a-user-pick-a-subdirectory-in-c 1 What's the best way to let a user pick a subdirectory in C#? Fred 2009-03-19T20:57:34Z 2009-03-20T01:15:01Z <p>What's the best way to let a user pick a subdirectory in C#?</p> <p>For example, an app that lets the user organize all his saved html receipts. He most likely is going to want to be able to select a root subdirectory that the program should search for saved webpages (receipts).</p> <p>Duplicate:</p> <ul> <li><a href="http://stackoverflow.com/questions/11767/browse-for-a-directory-in-c">http://stackoverflow.com/questions/11767/browse-for-a-directory-in-c</a></li> </ul> http://stackoverflow.com/questions/636266/whats-the-best-way-to-handle-exceptions-over-the-lifetime-of-your-code 1 What's the best way to handle exceptions over the lifetime of your code? Fred 2009-03-11T20:42:07Z 2009-03-11T21:48:07Z <p>When I'm writing a function in a utility module to be used again, I tend to leave lots of comments at the top of functions and some simple input checks to throw up a message in the debugger if a function is used inappropriately, w/o simply using a throw command.</p> <p>What's the best methodology of handling such situations? What functionality is easiest to use for this in C#?</p> <p>In my CS classes a decade ago, we would simply use an assert(...) command in C++ and let the program bomb out if something was used incorrectly.</p> <p>Now that I'm using C# I've used two methods, throwing up a MessageBox.Show("...") to clarify why a function is returning prematurely or a Console.WriteLine("...") to have it explained only in the debug console.</p> <p>I'm currently leaning toward writing a custom ErrorMessage fuction that would check the build type and possibly a #define master toggle before displaying anything and probably saving to a .log file if I'm in a beta environment.</p> <p>What's the best method to use in such utility modules?</p> http://stackoverflow.com/questions/37073/what-is-currently-the-best-way-to-get-a-favicon-to-display-in-all-browsers-that-s 16 What is currently the best way to get a favicon to display in all browsers that support Favicons? Fred 2008-08-31T20:20:46Z 2009-01-30T15:45:39Z <p>What is currently the best way to get a favicon to display in all browsers that currently support it?</p> <p>Please include:</p> <ol> <li><p>Which image formats are supported by which browsers.</p></li> <li><p>Which lines are needed in what places for the various browsers.</p></li> </ol> http://stackoverflow.com/questions/175858/can-i-save-a-flowdocument-to-baml-in-a-programmatic-way 2 Can I save a FlowDocument to BAML in a programmatic way? Fred 2008-10-06T19:41:10Z 2008-11-26T13:45:33Z <p>Has anyone found a way to save a FlowDocument as BAML or other compressed format? I can import XML with images to create a new FlowDocument:</p> <pre><code>&lt;TextRange class instance&gt;.Load(fs, DataFormats.Rtf) </code></pre> <p>However, I haven't found a good way to save it in a 'native' compressed format. Uncompressed XAML is easy to generate using:</p> <pre><code>&lt;TextRange class instance&gt;.Save(fs, DataFormats.Xaml); </code></pre> <p>But is there any programmatic method to save it to a compressed format?</p> <p>If there isn't an existing method, does anyone know where to find a programmatic XAML compiler? Or even just the BAML specifications? I could programmatically generate an entire XAML window with the FlowDocument embedded, but I'd still want to convert the XAML to BAML for faster load times. I'm using relatively large rtf documents and conversion time using DataFormats.Rtf is significant.</p> http://stackoverflow.com/questions/175858/can-i-save-a-flowdocument-to-baml-in-a-programmatic-way/320737#320737 0 Answer by Fred for Can I save a FlowDocument to BAML in a programmatic way? Fred 2008-11-26T13:45:33Z 2008-11-26T13:45:33Z <p>The XamlPackage format is compressed:</p> <pre><code>&lt;TextRange class instance&gt;.Save(fs, DataFormats.Xaml); </code></pre> http://stackoverflow.com/questions/300187/are-there-any-flowdocument-diff-viewers-for-wpf/320728#320728 1 Answer by Fred for Are there any FlowDocument diff viewers for WPF? Fred 2008-11-26T13:41:19Z 2008-11-26T13:41:19Z <p>Here's a way to save it as raw xaml (text file) from the code-behind file, assuming that the flowdocument (not viewer) itself is named "myFlowDoc", if only the viewer is named, use the property .Document of the viewer to get it. And a stream to a stream myStream (FileStream, MemoryStream, etc doesn't matter).</p> <pre><code>// Create a TextRange around the entire document. TextRange documentTextRange = new TextRange(myFlowDoc.ContentStart, myFlowDoc.ContentEnd); // Save it. Note that it will not respect current stream position; // it'll assume that it gets the entire stream. documentTextRange.Save(myStream, DataFormats.Xaml); </code></pre> http://stackoverflow.com/questions/202630/how-do-i-detect-a-null-pointer-in-c 0 How do I detect a null pointer in C#? Fred 2008-10-14T20:18:30Z 2008-10-14T21:29:56Z <p>How do I determine if an object reference is null in C# w/o throwing an exception if it is null?</p> <p>i.e. If I have a class pointer being passed in and I don't know if it is null or not.</p> http://stackoverflow.com/questions/202630/how-do-i-detect-a-null-pointer-in-c/202679#202679 0 Answer by Fred for How do I detect a null pointer in C#? Fred 2008-10-14T20:31:45Z 2008-10-14T20:37:09Z <p>I have in the application's xaml.cs application derivative definition:</p> <pre><code>private SortedList myList; </code></pre> <p>And I want to be able to re-use my constructors. So I needed:</p> <pre><code>if ( myList == null) myList = new SortedList(); </code></pre> <p>Thanks Robert!</p> http://stackoverflow.com/questions/175858/can-i-save-a-flowdocument-to-baml-in-a-programmatic-way/184151#184151 0 Answer by Fred for Can I save a FlowDocument to BAML in a programmatic way? Fred 2008-10-08T18:25:45Z 2008-10-08T18:25:45Z <p>Well, it turns out you can run Visual C# 2008 Express w/o the GUI. And you can modify the final program name via code before you compile as well. I'm sure you can do it via APIs, but here's the hack I found:</p> <ol> <li>The program's is name determined in .csproj, in the xml tag.</li> <li>Run via code or batch file: "\Common7\IDE\vcsexpress" ".sln" /rebuild Release /projectconfig Release /out errors.txt</li> </ol> <p>I like to examine and then delete the errors.txt after each run to make it easier to see if I got a clean build. This isn't ideal because you have to have a full bought version of Visual C# 2008 on each machine you use this way, but it is a way to create a new executable to display each flow document in a programatic way. Also if you have an error in your XAML, you may generate a program that won't run.</p> <p>Note that the BAML format does NOT compress the text, only the tags and other 'plumbing'. Even the Margin and Padding information is saved in clear ASCII. This is inherited by the end .exe leaving the text clearly visible in sections to notepad or similar.</p> http://stackoverflow.com/questions/178231/how-else-can-one-present-an-architecture-document-besides-as-a-series-of-views/179188#179188 0 Answer by Fred for How else can one present an architecture document besides as a series of views? Fred 2008-10-07T16:00:04Z 2008-10-07T16:00:04Z <p>This may be WAY off topic, but is there anyway to use <a href="http://www.joelonsoftware.com/articles/fog0000000033.html" rel="nofollow">Joel's ideas on making specifications 'fun'</a> usable is this realm?</p> http://stackoverflow.com/questions/59786/how-do-i-get-a-custom-application-name-and-starting-window-name-in-visual-c-2008/59888#59888 2 Answer by Fred for How do I get a custom application name and starting window name in Visual C# 2008 using WPF? Fred 2008-09-12T20:36:24Z 2008-10-06T20:21:36Z <p>Follow these steps:</p> <ol> <li><p>Rename the application and window .xaml's in the solution explorer.</p></li> <li><p>Edit the application's .xaml (App.xaml originally) so the StartupUri points to the new name of the starting window the line will be as follows: </p> <p> StartupUri="Window1.xaml"</p></li> <li><p>Edit in the original window's .cs codebehind window so Window1 becomes the new window's name.</p></li> <li><p>Use the mouse on the drop-down after the new window name to copy the changed name elsewhere.</p></li> <li><p>Edit the title of the window.</p></li> </ol> http://stackoverflow.com/questions/59786/how-do-i-get-a-custom-application-name-and-starting-window-name-in-visual-c-2008 0 How do I get a custom application name and starting window name in Visual C# 2008 using WPF? Fred 2008-09-12T19:16:53Z 2008-10-06T20:21:36Z <p>I'm using Microsft Visual C# 2008 and am creating WPF applications. If you create a new solution and pick the WPF application template it lets you provide a single string to name the solution.</p> <p>It then automatically turns that string into a base project name and a namespace using underscores instead of spaces. It also generates a class that inherits from the application class named App and a starting window with a Grid control in it named Window1.</p> <p>I want to customize pretty much everything.</p> <p>What's the simplest method of renaming App, Window1, and the starting namespace which won't corrupt the Solution?</p> http://stackoverflow.com/questions/4782/how-much-database-performance-overhead-when-using-linq 7 How much database performance overhead when using LINQ? Fred 2008-08-07T14:38:59Z 2008-09-16T07:14:18Z <p>How much database performance overhead is involved with using C# and LINQ compared to custom optimized queries loaded with mostly low-level C, both with a SQL Server 2008 backend?</p> <p>I'm specifically thinking here of a case where you have a fairly data-intensive program and will be doing a data refresh or update at least once per screen and will have 50-100 simultaneous users.</p> http://stackoverflow.com/questions/64029/windows-form-ordering-using-mdilayout/68088#68088 1 Answer by Fred for Windows Form Ordering using MDILayout Fred 2008-09-16T00:01:28Z 2008-09-16T00:01:28Z <p>Another idea would be to put the actual rating mechanism at the bottom of each child window. So the answer is actually attached to the picture on their child windows instead of having the answers in their own area.</p> http://stackoverflow.com/questions/64029/windows-form-ordering-using-mdilayout/64151#64151 0 Answer by Fred for Windows Form Ordering using MDILayout Fred 2008-09-15T15:53:04Z 2008-09-15T15:53:04Z <p>Could you avoid this problem by (before displaying the images) you:</p> <ol> <li><p>Put the image references in a structure (array or similar).</p></li> <li><p>Have a recursive function build a reverse order structure (or reorder the original).</p></li> <li><p>Use the new reversed order structure to build your child windows as before.</p></li> </ol> <p>It would add one more layer but might solve your problem if no one finds the reverse layout order switch soon enough.</p> http://stackoverflow.com/questions/1344094/how-do-i-open-a-directory-with-createfile-in-c-to-examine-deleted-entries/1385152#1385152 Comment by Fred on How do I open a directory with CreateFile in C# to examine deleted entries? Fred 2009-09-15T23:08:00Z 2009-09-15T23:08:00Z The old backup was actually deleted several years ago. Thanks for the idea though. http://stackoverflow.com/questions/1344094/how-do-i-open-a-directory-with-createfile-in-c-to-examine-deleted-entries/1357897#1357897 Comment by Fred on How do I open a directory with CreateFile in C# to examine deleted entries? Fred 2009-09-01T06:22:54Z 2009-09-01T06:22:54Z The hard part is that the lost files are on a FAT32 external hard drive. http://stackoverflow.com/questions/1344094/how-do-i-open-a-directory-with-createfile-in-c-to-examine-deleted-entries/1357897#1357897 Comment by Fred on How do I open a directory with CreateFile in C# to examine deleted entries? Fred 2009-09-01T06:19:18Z 2009-09-01T06:19:18Z I'm actually more familiar with C++ than C# so I'll probably just use Visual C++. I'm working with C# to learn the language. http://stackoverflow.com/questions/1352550/how-can-i-undelete-a-file-using-c Comment by Fred on How can I undelete a file using C#? Fred 2009-08-30T03:55:12Z 2009-08-30T03:55:12Z psasik: I'd love to find a cheap or free utility that would do this. Though I refuse to pay for crippleware especially when I don't know if it's going to work. The single letter directory and file names and changed file extensions makes it a lot harder than it should be. http://stackoverflow.com/questions/1352550/how-can-i-undelete-a-file-using-c Comment by Fred on How can I undelete a file using C#? Fred 2009-08-30T03:53:27Z 2009-08-30T03:53:27Z MusiGenesis: No, when a batch file deletes it that way, it does what Matthew mentions, replacing the first character of the file name in the directory entry with 00h. http://stackoverflow.com/questions/1352550/how-can-i-undelete-a-file-using-c/1352559#1352559 Comment by Fred on How can I undelete a file using C#? Fred 2009-08-30T03:30:16Z 2009-08-30T03:30:16Z It is on a FAT32 drive, and I've gone in with a hex editor and verified that there are a number of deleted directories and files still present. With several hundred one letter name (deleted) directory entries available I figure I'm going to have to iterate through restoring each one and then checking each deleted directory and file entry in each one and check the first 4 bytes of each file to see if it's a valid .jpg. http://stackoverflow.com/questions/1344094/how-do-i-open-a-directory-with-createfile-in-c-to-examine-deleted-entries/1344256#1344256 Comment by Fred on How do I open a directory with CreateFile in C# to examine deleted entries? Fred 2009-08-28T04:46:59Z 2009-08-28T04:46:59Z I made about 7 or 8 different tests and commented out parts when I wasn't using them so I wouldn't have to start over if I later learned I was partially correct earlier on. http://stackoverflow.com/questions/1344094/how-do-i-open-a-directory-with-createfile-in-c-to-examine-deleted-entries Comment by Fred on How do I open a directory with CreateFile in C# to examine deleted entries? Fred 2009-08-28T04:45:43Z 2009-08-28T04:45:43Z They're calls using Microsoft's kernel32.dll, using the raw Windows API functionality. http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/253972#253972 Comment by Fred on What non-programming books should programmers read? Fred 2009-08-22T16:50:46Z 2009-08-22T16:50:46Z Wow, I guess tolerance really doesn't include Christianity. If a Christian had made remarks like this about any other religion (including atheistic), we'd be slammed so hard it'd make our head spin. http://stackoverflow.com/questions/1088804/after-importing-an-older-c-file-into-a-new-wpf-appliction-using-system-windows/1088820#1088820 Comment by Fred on After importing an older C# file into a new WPF appliction, "using System.Windows;" gives an error message. Fred 2009-07-06T19:34:21Z 2009-07-06T19:34:21Z I think I'd rather update his library to use WPF functionality instead, but that's definately useful information. Thanks! http://stackoverflow.com/questions/1027601/experience-of-microsoft-bizspark-empower/1083467#1083467 Comment by Fred on Experience of Microsoft BizSpark / Empower Fred 2009-07-06T15:01:46Z 2009-07-06T15:01:46Z I noticed Bob Walsh of 47hats.com and had him sponsor me. http://stackoverflow.com/questions/1083427/what-are-the-various-components-of-visual-studio-team-system-each-designed-for/1083445#1083445 Comment by Fred on What are the various components of Visual Studio Team System each designed for? Fred 2009-07-05T04:26:15Z 2009-07-05T04:26:15Z Thanks Robert Harvey! http://stackoverflow.com/questions/1083427/what-are-the-various-components-of-visual-studio-team-system-each-designed-for Comment by Fred on What are the various components of Visual Studio Team System each designed for? Fred 2009-07-05T04:17:38Z 2009-07-05T04:17:38Z Here's just the downloads with 'Team System' and not a service pack or trial: Visual Studio Team System 2008 Architecture Edition (x86) - DVD (English) Visual Studio Team System 2008 Database Edition (x86) - DVD (English) Visual Studio Team System 2008 Development Edition (x86) - DVD (English) Visual Studio Team System 2008 Team Foundation Server Standard Edition (x86) - DVD (English) Visual Studio Team System 2008 Team Foundation Server Workgroup Edition (x86) - DVD (English) Visual Studio Team System 2008 Team Suite (x86) - DVD (English) http://stackoverflow.com/questions/636266/whats-the-best-way-to-handle-exceptions-over-the-lifetime-of-your-code/636518#636518 Comment by Fred on What's the best way to handle exceptions over the lifetime of your code? Fred 2009-03-11T22:08:20Z 2009-03-11T22:08:20Z But the info especially the code block was very helpful. I've been using summary blocks a lot I especially like it giving me a spot to explain the arguments especially if I'm using overloading. http://stackoverflow.com/questions/636266/whats-the-best-way-to-handle-exceptions-over-the-lifetime-of-your-code/636518#636518 Comment by Fred on What's the best way to handle exceptions over the lifetime of your code? Fred 2009-03-11T22:04:52Z 2009-03-11T22:04:52Z Your link seems to be broken atm.