c# - Why is Process Explorer not showing the .Net information in the .Net columns?

07
2014-07
  • Questioner

    I see the process but the Heap Bytes, Gen 0 Collection cols are blank.

    Can someone tell me how to fix this?

  • Answers
  • GregC

    Maybe try set up symbols under Options. I can see Gen 0 fine in version 14.

    Keep in mind that it only shows up for processes with CLR.


  • Related Question

    c# - Mapping a https://... as a local logic drive?
  • David.Chu.ca

    I can map a network share point to a local logical drive by using net.exe like this:

    net use J: \\cnf001\test\folder1 /user: ...
    

    I build a C# lib to use Process to simulate the mapping. Now I have a case I need to map: a share point in "My Computer"->"My Network Places"->[share node], where "share node" is in the format https://...

    I cannot use net.exe any more, or I am not sure what parameters I can use if possible? Anyway, is it possible to build map drive for this case? How? Do I need some other tools


  • Related Answers
  • Nissan Fan

    You can do this if the server at the HTTP(s) supports WebDAV. WebDAV is available on most web platforms so it shouldn't be an issue to enable it.

    http://en.wikipedia.org/wiki/WebDAV

  • Sergii Volchkov

    You can check the following article: Reading contents of Web Folders in C#. In a nutshell, the folders in My Network Places are just file system shortcuts located in Documents and Settings\$USER$\NetHood (XP) / Users\$USER$\AppData\Roaming\Microsoft\Windows\Network Shortcuts (Vista).

    And regarding your comment on using FTP - you can use System.Net.FtpWebRequest class or System.Net.WebClient class.

  • doekman

    On windows, you need a third party tool. For example DriveOnWeb. I used an OEM version, which only works with my ISP, but it works great.