4

这似乎是一个奇怪的问题,但我需要将我的代码转换为 pdf 格式 - 这样我才能将其提交。是的,可悲的是,学校系统要求将 cd 上的代码作为 pdf 格式。我能做的是打开我的解决方案中的每个类并复制粘贴它。但是 - 作为一名程序员 - 我很懒,想知道 Visual Studio 是否有这方面的功能?或者是否有其他方法?

编辑:第三方程序遍历文件夹中的所有文件,打开文件并将其内容复制到 pdf 文件中。也可以 - 它不必在 Visual Studio 中。

4

1 回答 1

1

厌倦了等待,这就是我想出的:

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;

namespace GetFileContents
{
    class Program
    {
        static string types = ".js,.cshtml,.cs,.less,.css";
        private static string text = "";
        static void Main(string[] args)
        {
            //This folder wraps the whole thing.
            string folderPath = @"C:\randomFolderWhereProjectIs\";

            string s = IterateIt(Directory.GetDirectories(folderPath).ToList());
            //Save to file or whatever I just used the text visualiser in Visual Studio
        }

        private static string IterateIt(List<string> l)
        {

            foreach (var path in l)
            {
                var files = Directory.GetFiles(path).Select(c => new FileInfo(c)).Where(c => types.Split(',').Contains(c.Extension));

                foreach (var fileInfo in files)
                {
                    text += fileInfo.Name + "\r\n";
                    using (StreamReader reader = fileInfo.OpenText())
                    {
                        text += reader.ReadToEnd() + "\r\n";
                    }
                }
                text = IterateIt(Directory.GetDirectories(path).ToList());
            }
            return text;
        }


    }
}
于 2012-05-30T12:32:02.173 回答