Ejemplo n.º 1
0
        public override bool Execute()
        {
            bool success = false;

            try
            {
                this.Log.LogMessage("MakeRelativeList input is " + string.Join(", ", List1.ToList()));
                _result = new List <ITaskItem>();
                string current = Directory.GetCurrentDirectory();
                current = current.Replace("\\", "/");
                if (!current.EndsWith("/"))
                {
                    current = current + "/";
                }
                if (List1 != null)
                {
                    foreach (var v1 in List1)
                    {
                        if (v1 == null)
                        {
                            continue;
                        }
                        var f = v1.ItemSpec.ToString();
                        try
                        {
                            var is_full_path = System.IO.Path.IsPathRooted(f);
                            if (!is_full_path)
                            {
                                f = System.IO.Path.GetFullPath(f);
                            }
                            var absolute = f;
                            absolute = absolute.Replace("\\", "/");
                            string relative_path;
                            if (absolute.ToLower().IndexOf(current.ToLower()) == 0)
                            {
                                relative_path = absolute.Substring(current.Length);
                            }
                            else
                            {
                                relative_path = absolute;
                            }
                            if (relative_path[0] == '/')
                            {
                                relative_path = relative_path.Substring(1);
                            }
                            _result.Add(new TaskItem()
                            {
                                ItemSpec = relative_path
                            });
                        }
                        catch
                        {
                            _result.Add(v1);
                        }
                    }
                }
                success = true;
                this.Log.LogMessage("MakeRelativeList output is " + string.Join(", ", _result.ToList()));
            }
            catch (Exception e)
            {
                this.Log.LogMessage("Problem with MakeRelativeList "
                                    + e.Message + e.StackTrace
                                    );
            }
            return(success);
        }