Interesting thread: Thinstuff Remote Application – NLDelphi.
Allows remote application access from Windows 7 / Vista / XP and Windows SBS, and it looks like you don’t need special CAL for it.
–jeroen
Posted by jpluimers on 2013/06/13
Interesting thread: Thinstuff Remote Application – NLDelphi.
Allows remote application access from Windows 7 / Vista / XP and Windows SBS, and it looks like you don’t need special CAL for it.
–jeroen
Posted in Power User, Windows, Windows 7, Windows Vista, Windows XP | Leave a Comment »
Posted by jpluimers on 2013/06/13
Time to try out the 3 months old release and see how much got fixed in the mean time.
–jeroen
Posted in *nix, Linux, openSuSE, Power User, SuSE Linux | Leave a Comment »
Posted by jpluimers on 2013/06/13
A while ago I needed unique temporary directories. This appears not to be standard functionality in the .NET System.IO.Path or System.IO.Directory class.
Josh Kelley asked a question about it before, and I adapted the example by Scott-Dorman based on GetTempPath and GetRandomFileName and comments by Chris into a more robust CreateTemporaryRandomDirectory one that works in .NET 2.0 and higher:
using System.IO; namespace BeSharp.IO { public class DirectoryHelper { public static string GetTemporaryDirectory() { do { try { string tempPath = Path.GetTempPath(); string randomFileName = Path.GetRandomFileName(); string tempDirectory = Path.Combine(tempPath, randomFileName); Directory.CreateDirectory(tempDirectory); return tempDirectory; } catch (IOException /* ex */) { // continue } } while (true); } } }
You can call it like this: Read the rest of this entry »
Posted in .NET, .NET 2.0, .NET 3.0, .NET 3.5, .NET 4.0, .NET 4.5, C#, C# 1.0, C# 2.0, C# 3.0, C# 4.0, C# 5.0, Development, Software Development | 2 Comments »