82
1
using System;using System.Linq;
2
public static class Program
3
{
4
private static string seperator = "~"; //must be single character string, tilde is a valid filename char, may want to use a non-valid char for filenames.
5
private const int leadingnumbers = 5; //number of leading characters to build up to
6
/// <summary>
7
/// Format filename to a length (maxFileLen), by splitting filename into 1/3rd leading and 2/3rds ending until max leadingnumbers is reached. Used for toast nofications less than 41 characters by metadataconsulting.blogspot.com
8
/// </summary>
9
/// <param name="filename"></param>
10
/// <param name="maxFileLen"></param>
11
/// <returns></returns>
12
public static string TrimMidFileNameFormat(this string filename, int maxFileLen)
13
{
14
15
Console.Write(string.Format("{0,5:###}", maxFileLen)+" "); //remove line when using in your library
16
17
string ext = filename.GetFileNameExtension();
18
int extLen = ext.Length; //includes dot in length
19
string filenamelessext = filename.Substring(0, filename.Length - extLen);
20
int filenamelessextLen = filenamelessext.Length;
21
int maxroom = Math.Min(leadingnumbers * 2 - 1, filenamelessextLen);
22
int minLen = 2 + 1 + extLen; //1st char + tilde.length(1) + last char + extLen(min 4) => 7 ie s~p.exe
23
int lastLen = 1 + extLen; // last char + extLen(min 4) ie p.exe
24
Cached Result