fork(37) download
  1. using System;
  2. using System.IO;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. string path = @"photo\myFolder\image.jpg";
  9. string file = Path.GetFileNameWithoutExtension(path);
  10. string NewPath = path.Replace(file, file + "-resize");
  11. Console.WriteLine(NewPath); //photo\myFolder\image-resize.jpg
  12. }
  13. }
Success #stdin #stdout 0.02s 33848KB
stdin
Standard input is empty
stdout
photo\myFolder\image-resize.jpg